在Python中如何打印输出列表List类型数据

Python中,使用print()函数可以输出列表List类型数据。使用方法如下:

1. 直接输出列表List

list1 = [1, 2, 3, 4]
print(list1)

运行结果:

[1, 2, 3, 4]

2. 使用for循环进行遍历输出

list1 = [1, 2, 3, 4]
for item in list1:
    print(item)

运行结果:

1
2
3
4

3. 使用join()函数进行连接输出

list1 = [1, 2, 3, 4]
print(' '.join(str(n) for n in list1))

运行结果:

1 2 3 4

4. 使用format()函数输出

list1 = [1, 2, 3, 4]
print('{} {} {} {}'.format(*list1))

运行结果:

1 2 3 4

本文链接:http://task.lmcjl.com/news/8716.html

展开阅读全文