📜  烧瓶打印到控制台 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:47.277000             🧑  作者: Mango

代码示例2
import sys

print('This is error output', file=sys.stderr)
print('This is standard output', file=sys.stdout)