list = [('1', '2', '3', '4')]
怎么把list转换成str=1234
收起
list_x = [('1', '2', '3', '4')] string = ''.join(list_x[0]) print(string)
报告相同问题?