import sys print('hello world!', file=sys.stderr) # 》》hello world! 其实print函数的默认输出等价于sys.stdout.write(),只是print会自动换行,而 ...
確定! 回上一頁