继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

python中的list,字符串转换

墨色风雨
关注TA
已关注
手记 295
粉丝 75
获赞 350

在Python的编程中,经常会涉及到字符串与list之间的转换问题,下面就将两者之间的转换做一个梳理。
1、list转换成字符串

命令:list()

例子:

2、字符串转换成list
命令:"".join(list)

其中,引号中是字符之间的分割符,如“,”,“;”,“\t”等等

[python] view plain copy
['1', '2', '3', '4', '5']  
['123', 'sjhid', 'dhi']  
['www', 'google', 'com']  
3.list >>>str
[python] view plain copy
str4 = "".join(list3)  
print str4  
str5 = ".".join(list3)  
print str5  
str6 = " ".join(list3)  
print str6

输出为:
[python] view plain copy
wwwgooglecom  
www.google.com  
www google com

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP