标签: python number-with-delimiter
>>>list1=list(eval(input()))
在这里,我要输入以空格而不是“,”分隔的列表元素
答案 0 :(得分:1)
list1 = list(input('Enter list item').split(' '))