码迷,mamicode.com
首页 > 其他好文 > 详细

切分,字符串转列表

时间:2019-11-27 00:22:11      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:字符串   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!