i created an array of names. it allows user to add, if user says exit it stops the list and prints it. how do i stop it from putting the work EXIT into the list and get rid of the square brackets and speech marks. Thanks
import array
names = ['umayr', 'bob', 'harry']
print("Here is current names: " + str(names))
addname = ""
while addname != 'exit':
addname = input("Enter a new name or exit: ")
names.append(addname)
if addname == 'exit':
break
print('List of Names' + str(names))