Is it possible to add different values in one input?
This is the code I have right now:
list[]
fruits = input("What are you favorite fruits? Separate each one by comma's.)
list.append(fruits)
print(list)
But the result is:
['Apple,Banana,Strawberry,Orange']
How can I make the result a different value/each single value for each fruit? Like so...
['Apple', 'Banana', 'Strawberry', 'Orange']