PHP8.1.21版本已发布
vue8.1.21版本已发布
jquery8.1.21版本已发布

python字符串和列表的相互转换实例

零下一度
零下一度 原创
2017-06-30 17:27:06 1312浏览

1.str >>>list

[python] view plain copy
str1 = "12345"  
list1 = list(str1)  
print list1

str2 = "123 sjhid dhi"  
list2 = str2.split() #or list2 = str2.split(" ")  
print list2  
  
str3 = "www.google.com"  
list3 = str3.split(".")  
print list3  
[python] view plain copy
输出为:  
[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字符串和列表的相互转换实例的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。