是否可以在一个输入中添加不同的值?
这是我现在的代码:
list[]
fruits = input("What are you favorite fruits? Separate each one by comma's.)
list.append(fruits)
print(list)
但结果是:
['Apple,Banana,Strawberry,Orange']
如何为每个水果制作不同的值/每个值的结果?像这样......
['Apple', 'Banana', 'Strawberry', 'Orange']
答案 0 :(得分:1)
在安迪发布了另一个类似问题的链接后,我找到了答案。
Split an input into two. Python 3
>>> "hello, world".split(',')
['hello', ' world']