不敢说大话了,Python中 print 函数的8种用法还没搞明白
Posted 我爱Python数据挖掘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不敢说大话了,Python中 print 函数的8种用法还没搞明白相关的知识,希望对你有一定的参考价值。
在Python语言的学习过程中,print函数可能是我们大多数人学习会的第一个函数。但是该函数有一些特殊的用法,本文重点介绍使用该函数的八重境界。
闲话少说,我们直接开始吧!
Level1 基础用法
函数print最最基础的用法就是按照我们的要求,打印相应的内容。
如下所示:
print("hello")
# hello
上述代码,传入一串字符串,运行后在终端输出显示。
Level2 打印多个参数
如果我们向print函数传递多个参数,那么在运行时,该函数会在打印的参数之间自动插入空白字符。
如下所示:
print("apple", "orange", "pear")
# apple orange pear
Level3 使用end参数
实质上,函数print的默认参数有结束符end,主要用于分割打印内容。
举例如下:
print("apple", end=" ")
print("orange", end=" ")
print("pear", end=" ")
# apple orange pear
默认情况下,函数print中参数end的默认值为\\n。如果我们传入其他值,那么print函数将会使用参数end的字符添加到打印内容的末尾。
举例如下:
print("apple", end=";")
print("orange", end="!!")
print("pear", end="end")
# apple;orange!!pearend
Level4 使用sep参数
一般来说,函数print中的参数sep分割符,默认值为空格字符" ",
参数sep主要用于添加到print函数的多个参数之间。
举例如下:
print(1, 2, 3) # 1 2 3 # default sep is " "
print(1, 2, 3, sep=";") # 1;2;3
print(1, 2, 3, sep="#") # 1#2#3
print(1, 2, 3, sep="4") # 14243
Level5 使用pprint
如果我们有一个具有多层嵌套的复杂数据结构,此时我们可以使用pprint来打印它,而不是编写一个for循环来可视化它。
举例如下:
from pprint import pprint
data = [
[[1, 2, 3], [1, 2, 3], [1, 2, 3]],
[[4, 5, 6], [4, 5, 6], [4, 5, 6]],
[[7, 8, 9], [7, 8, 9], [7, 8, 9]]
]
pprint(data)
输出如下:
Level6 彩色输出
想要在Python中打印彩色输出,我们一般使用第三方库colorama。这意味着我们首先需要使用pip安装它。
在终端中运行 pip install colorama 就可以方便地来安装它啦。
样例如下:
from colorama import Fore
print(Fore.RED + "hello world")
print(Fore.BLUE + "hello world")
print(Fore.GREEN + "hello world")
输出如下:
Level7 输出到文件中
默认情况下,函数print的参数 file 的默认值为sys.stdout 。这意味着我们可以使用print函数打印的任何内容都会在终端显示。
当然,我们也可以改变该参数的值,将相应的打印内容输出到文件中。
举例如下:
print("hello", file=open("out.txt", "w"))
Level8 输出重定向到文件中
假设我们运行了一个普通的Python脚本run.py,输出打印一些东西:
print("hello world")
print("apple")
print("orange")
print("pear")
接着,我们可以改变运行Python脚本的方式,使其输出重定向到文件中,如下:
python run.py > out.txt
上述命令执行后,输出不是打印显示到终端,而是将Python脚本的所有输出打印重定向到文本文件 out.txt 中。
总结
本文详细地介绍了Python中打印函数print的各个参数的用法,并由浅入深地对其特性进行了相应的讲解,并给出了相应的代码示例。
推荐文章
以上是关于不敢说大话了,Python中 print 函数的8种用法还没搞明白的主要内容,如果未能解决你的问题,请参考以下文章