概述
当我们在Python的print
打印时,我们到底在使用什么? 其实print语句不过是Python简便使用的特性体验而已,其背后就是sys.stdout
对象的简单接口,即我们也可以利用sys.stdout
完成所有print打印行为,比如打印Hello, world!
。
import sys
sys.stdout.write('Hello, world!')
示例结果:
Hello, world!
再者
import sys
s1 = 'Hello,'
s2 = 'world!'
print(s1, s2, end='\n')
sys.stdout.write(str(s1) + ' ' + str(s2) + '\n')
示例结果:
Hello, world!
Hello, world!
重定向输出流
我们已经知道print对sys.stdout的依赖,那么我们能否将sys.stdout赋值为标准输出流以外的东西,即将print的文字传送到其他地方。
import sys
s1 = 'Hello,'
s2 = 'world!'
sys.stdout = open('hello.txt', 'a')
...
print(s1, s2)
print(s2, s1)
hello.text内容:
Hello, world!
world! Hello,
可以看到标准输出流并没有打印任何信息,而需要被打印的内容全部被写入hello.txt
文件中,这是为何? 因为我们把sys.stdout
重设成已经打开的文件对象,重设之后,程序中所有的print都会将文字输出至文件hello.txt
中,即进程中只有一个sys模块,通过这种方式就可以将所有的print进行重定向。当然我们也可以对单个print进行重定向,即上节介绍的print函数中的file参数完成重定向,这也是为何print定义file之后不会进行原始输出流的操作,即屏幕没有打印该次print函数的字符串信息。
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦