python字串和列表的相互轉換實例

零下一度
發布: 2017-06-30 17:27:06
原創
1606 人瀏覽過

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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板