标签:字符串 pytho class 列表 int highlight print pre lis
a = "1,2,3,4,5,6,7,8"
b = a.split(",")
print(b)
print(type(b))
"""
[‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘]
<class ‘list‘>
"""
标签:字符串 pytho class 列表 int highlight print pre lis
原文地址:https://www.cnblogs.com/realadmin/p/11939218.html