Python中List和字符串类型的相互转换
Posted EdenChanIy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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为字符串
此外,引号中是字符之间的分割符,如‘,’,‘ ‘等等
以上是关于Python中List和字符串类型的相互转换的主要内容,如果未能解决你的问题,请参考以下文章
Python set list dict tuple 区别和相互转换
python 中各类型介绍及相互转换 - list, array, tensor, dict, tuple, DataFrame