python中的list,字符串转换
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中的list,字符串转换相关的知识,希望对你有一定的参考价值。
在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
以上是关于python中的list,字符串转换的主要内容,如果未能解决你的问题,请参考以下文章