python 判断 stdout 是终端 tty 还是重定向

创建日期: 2023-04-14 12:16 | 作者: 风波 | 浏览次数: 14 | 分类: Python

来源:https://stackoverflow.com/questions/1077113/how-do-i-detect-whether-sys-stdout-is-attached-to-terminal-or-not

if sys.stdout.isatty():
    # You're running in a real terminal
else:
    # You're being piped or redirected
14 浏览
8 爬虫
0 评论