I am trying to have a user input items into a list, and then have all the items they entered go into a list.
Example:
itemList = []
items = input ("Enter all items: ")
What I would like to do is, if user inputs "Test Test2 Test3 Test4", each of the items (seperated by the spaces) gets put into the itemList.
Sorry if I did not explain it very well, and I am not sure if this is even possible.
Thanks in advance