标签: python python-3.x
doc说
如果存在提示参数,则将其写到标准输出而没有尾随换行符。
但是我在Mac上使用Python 3.6.5获得了以下内容,它似乎可以输出到stderr。
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:⏎