list1=['2','3','4']
s=''.join(list1)
print(s)
'234'
把元素都變為字符串
list2=[3,4,5]
list2=[str(i) for i in list2]