博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 列表中的数字转为字符串
阅读量:5151 次
发布时间:2019-06-13

本文共 160 字,大约阅读时间需要 1 分钟。

1.

list1 = [1,2,3,4,5]

list1 = [ str(x) for x in list1 ]

2.

list1 = [1,2,3,4,5]

list1 = list(map(str,list1))

 

转载于:https://www.cnblogs.com/chen-wg/p/10837530.html

你可能感兴趣的文章