当前位置:优草派 > 问答 > Python问答

Python输出重定向和程序终止有什么方法?

标签: Python  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()。

TOP 10
  • 周排行
  • 月排行