如何在 python 中获取终端标准输出

问题描述 投票:0回答:0

你好,我想要这样的终端标准输出

>>> print('hello')
hello
>>> print # get terminal contents
'''
>>> print('hello')
hello
'''

我想这样做

import sys
print('Hello')
print(sys.stdout)

但是它没有打印终端内容

python terminal stdout
© www.soinside.com 2019 - 2024. All rights reserved.