技术社区

python中split() 后的list 为什么len为1?
006 | 发表于: 2020-02-13 回答
str1 = "11,12,13,14"
list1 = str1.split(',')
print(len(list1))
1

回复列表