python里打印list的四种方法
2021/6/12 12:23:04
本文主要是介绍python里打印list的四种方法,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
原文链接
标题:Print lists in Python (4 Different Ways)
用for循环来打印
a = [1, 2, 3, 4, 5] for x in range(len(a)): print a[x],
结果
1 2 3 4 5
用 * 星号来打印
a = [1, 2, 3, 4, 5] # 默认用空格分隔 print(*a) # 用逗号分隔 print(*a, sep = \", \") # 用行分隔 print(*a, sep = \"\\n\")
结果
1 2 3 4 5 1, 2, 3, 4, 5 1 2 3 4 5
把list转换为str来打印
# 如果list里面是str的话,直接用join()函数来加入空格 a =[\"Geeks\", \"for\", \"Geeks\"] print(\' \'.join(a)) # 如果是数字的话,先转换为str a = [1, 2, 3, 4, 5] print str(a)[1:-1]
结果
Geeks for Geeks 1, 2, 3, 4, 5
用map把数组里非字符类型的数据转换为字符,然后打印
#加入空格 a = [1, 2, 3, 4, 5] print(\' \'.join(map(str, a))) #换行打印 print(\'\\n\'.join(map(str, a)))
结果
1 2 3 4 5 1 2 3 4 5
这篇关于python里打印list的四种方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型
- 2024-12-23使用python部署一个usdt合约,部署自己的usdt稳定币
- 2024-12-20Python编程入门指南