摘要: 怎么把python中的列表转换为字符串: 1,列表中非字符串的元素的转换 方法一: 使用列表推导式进行转换 1 list=['hello',6,9,'beizhi'] 2 list=[str(i) for i in list1] 3 print(list) 4 输出结果为 5 ['hello', ' 阅读全文
posted @ 2022-08-06 17:28 代码改变世界—北枳 阅读(10506) 评论(0) 推荐(0) 编辑