Segmentation, the string transfer list

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'>
"""

  

Guess you like

Origin www.cnblogs.com/realadmin/p/11939218.html