Python3中的输入将输出写入何处?

时间:2018-08-23 14:20:35

标签: python python-3.x

doc

  

如果存在提示参数,则将其写到标准输出而没有尾随换行符。

但是我在Mac上使用Python 3.6.5获得了以下内容,它似乎可以输出到stderr

~/tmp λ cat foo.py
foo = input('input a word:')
print(foo)
~/tmp λ python foo.py 2>bar
hello
hello
~/tmp λ cat bar
input a word:⏎

0 个答案:

没有答案