Python list 与 str 互转
2021/12/28 17:37:20
本文主要是介绍Python list 与 str 互转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
- str 转list
str转list有两种方法,一种是list()函数,一种是split()方法 ,list()会把字符串的每一个字符分开,而split只是根据条件切分字符串成为列表.
>>> str1="你好 hello world" >>> list(str1) ['你', '好', ' ', 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'] >>>
>>> str1.split(" ") ['你好', 'hello', 'world']
>>> str2 ="你,好,hello,world" >>> str2.split(",") ['你', '好', 'hello', 'world'] >>> str2.split(" ") ['你,好,hello,world'] >>>
- list 转 str
>>> ll = ["你好","hello","world"] >>> list_str1="".join(ll) >>> print(list_str1) 你好helloworld >>> list_str1 '你好helloworld' >>>
>>> list_str2 = ",".join(ll) >>> list_str2 '你好,hello,world' >>>
>>> for i in ll: ... print(i) ... 你好 hello world >>>
-
list(str)转list(int)
>>> ll_int=['1','2','3','4','5'] >>> ll_int = list(map(int,ll_int)) >>> ll_int [1, 2, 3, 4, 5]
-
list(int)转list(str)
>>> ll_str=[1,2,3,4,5] >>> ll_str=list(map(str,ll_str)) >>> ll_str ['1', '2', '3', '4', '5'] >>>
-
list(int)转str
>>> ll_str=[1,2,3,4,5] >>> ll_str =",".join(list(map(str,ll_str))) >>> ll_str '1,2,3,4,5' >>> ll_str=[1,2,3,4,5] >>> ll_str ="".join(list(map(str,ll_str))) >>> ll_str '12345'
这篇关于Python list 与 str 互转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型