📜  要在 python 逗号中列出的字符串 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:22.491000             🧑  作者: Mango

代码示例1
# input comma separated elements as string 
str = str (raw_input ("Enter comma separated integers: "))
print "Input string: ", str

# conver to the list
list = str.split (",")
print "list: ", list