36-2
myList = []
def printList():
print()
for i in myList:
print(i)
print()
while True:
addItem = input("Item > ")
if addItem not in myList:
myList.append(addItem)
printList()INFO
myList = []
def printList():
print()
for i in myList:
print(i)
print()
while True:
addItem = input("Item > ")
if addItem not in myList:
myList.append(addItem)
printList()