Python中,使用print()函数可以输出列表List类型数据。使用方法如下:
list1 = [1, 2, 3, 4] print(list1)
运行结果:
[1, 2, 3, 4]
list1 = [1, 2, 3, 4] for item in list1: print(item)
运行结果:
1 2 3 4
list1 = [1, 2, 3, 4] print(' '.join(str(n) for n in list1))
运行结果:
1 2 3 4
list1 = [1, 2, 3, 4] print('{} {} {} {}'.format(*list1))
运行结果:
1 2 3 4
本文链接:http://task.lmcjl.com/news/8716.html