标签:结果 type 字符串 class print nbsp style bsp 输出
list_a=["345"] str_a="".join(list_a) print(type(str_a)) print(str_a)
输出结果:
<type ‘str‘> 345
python列表转换为字符串
原文地址:https://www.cnblogs.com/taoyuanming/p/10863798.html