Python : 标准库-错误输出重定向和程序终止

错误输出重定向和程序终止

sys 还有 stdin,stdout 和 stderr 属性,即使在 stdout 被重定向时,后者也可以用于显示警告和错误信息。

sys.stderr.write(‘Warning, log file not found starting a new one\n’)
Warning, log file not found starting a new one

大多脚本的定向终止都使用 “sys.exit()”。

猜你喜欢

转载自blog.csdn.net/weixin_44523387/article/details/92162754