在python中将标准输出stdout重定向为"nothing"
程序员文章站
2022-04-09 21:41:26
...
跨平台:
import os
import sys
f = open(os.devnull, 'w')
sys.stdout = f
Windows:
f = open('nul', 'w')
sys.stdout = f
Linux:
f = open('/dev/null', 'w')
sys.stdout = f
上一篇: JS转换number为货币格式
下一篇: html 2d转换