Examples of mutual conversion between python strings and lists

零下一度
Release: 2017-06-30 17:27:06
Original
1606 people have browsed it

1.str >>>list

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

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']
Copy after login


##3.list >>>str


[python] view plain copy
str4 = "".join(list3)  
print str4  
str5 = ".".join(list3)  
print str5  
str6 = " ".join(list3)  
print str6
Copy after login


The output is:

[python] view plain copy
wwwgooglecom  
www.google.com  
www google com
Copy after login

The above is the detailed content of Examples of mutual conversion between python strings and lists. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template