gpt4 book ai didi

python - 我可以从 python 中将所有输出重定向到/dev/null 吗?

转载 作者:行者123 更新时间:2023-11-28 19:58:33 25 4
gpt4 key购买 nike

我正在编写一个将 fork 子进程的 Python 脚本。父进程应该能够编写类似 Started child at xxxxx 的内容,但子进程输出应该重定向到 /dev/null。我怎样才能在 python 中做到这一点?

最佳答案

import sys
old_stdout, old_stderr = sys.stdout, sys.stderr
sys.stdout = open('/dev/null', 'w')
sys.stderr = open('/dev/null', 'w')

关于python - 我可以从 python 中将所有输出重定向到/dev/null 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7990414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com