导语:
本文主要介绍了关于python怎么将打印输出日志文件的相关知识,包括python多进程打印输出,以及python回车换行这些编程知识,希望对大家有参考作用。
首先导入 sys 模块,然后使用 sys.stdout 将打印行定向到你定义的日志文件,例如:
import sys
# make a copy of original stdout route
stdout_backup = sys.stdout
# define the log file that receives your log info
log_file = open("message.log", "w")
# redirect print output to log file
sys.stdout = log_file
print "Now all print info will be written to message.log"
# any command line that you will execute
...
log_file.close()
# restore the output to initial pattern
sys.stdout = stdout_backup
print "Now this will be presented on screen"
python学习网,免费的在线学习
,欢迎关注!
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 哪些人适合学习Python?12/04
- ♥ Python默认值使用注意事项11/10
- ♥ 了解python自动化运维相关内容介绍12/24
- ♥ python变量命名错误是什么原因11/26
- ♥ python中比较对象相等的方法有哪些?有什么区别?12/01
- ♥ Python __del__ 方法:销毁对象10/10
内容反馈