python中list和str互相转换
生活随笔
收集整理的這篇文章主要介紹了
python中list和str互相转换
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1.列表list-------->字符串str
第一種情況,如果list [ ] 中包含的元素是str " "類型。
使用下面方法,舉例。
運行結果:
ww222s
第二種情況,如果列表 [ ] 里面含有的元素是整形int ,需要將整形int 轉換成str類型。
nums=[1,2,3,4,5] strNums=[str(x) for x in nums] print("".join(strNums))輸入結果:
12345
2.字符串str---------->列表list
strnums1='12123112' strnums2='sdfsdsdf' listnums1=list(strnums1) listnums2=list(strnums2)print(listnums1) print(listnums2)輸出結果:
[‘1’, ‘2’, ‘1’, ‘2’, ‘3’, ‘1’, ‘1’, ‘2’]
[‘s’, ‘d’, ‘f’, ‘s’, ‘d’,‘s’, ‘d’, ‘f’]
總結
以上是生活随笔為你收集整理的python中list和str互相转换的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python的re.match()和re
- 下一篇: Python2与Python3之间的区别