python使用join提取列表类型中的数字字符串

list_a=["345"]
str_a="".join(list_a)
print(type(str_a))
print(str_a)

输出结果:

<type 'str'>
345