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

输出结果:

<type 'str'>
345