Python中List和字符串類型的相互轉換


1.字符串轉換成List

a = 'Hello World!'
a_list = list(a) 
//['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '!']

其中a為字符串,a_list為List

2.List轉換成字符串

a_list = ['H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '!']
a = ''.join(a_list) //'Hello Horld!'

其中a_list為List,a為字符串

此外,引號中是字符之間的分割符,如‘,’,'\t'等等


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM