2015-01-03 56 views

回答

3

print函數在Python 3.x中可選擇接受file參數,您可以指定文件對象。

import sys 

print(n, file=sys.stderr) 
0

使用shell重定向這樣

python foo_bar.py > file 

仍然有可能與Python 3.x的,因爲這不是Python本身的功能,但其實這是一個在其中運行python命令的shell解釋器的功能。