list1=['2','3','4']

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

相关文章: