list=[1, 2, 3, 4, 5, 6, 7, 8, 9] #1、字符串拼接 print(''.join(list)) #2、循环 for i in list print(i) #高阶函数 print(''.join(list(map(str,list))))