I'm having a bit of trouble putting user inputs into a list. I basically want the user to input about 5 thing and have each item stored in the list individually. I then want to display all the input in said list. If anyone can give any bit of guidance it will be greatly appreciated. This is what i have so far:
mylist=[1,2,3,4,5]
print mylist
print"Enter 5 items on shopping list"
for i in mylist:
shopping=raw_input()
print shopping