有沒有什麼方法可以在打印標準輸出的同時打印到文本文件?例如:打印標準輸出,同時也打印到Python中的文本文件
import sys
sys.stdout = open('file.txt', 'w')
#The stuff below should be printed out and at the same time being printed to a text file
print "This is in a text file and stdout"
所以,再次,有沒有辦法做到這一點?或者不能這樣做?
'tee' - http://stackoverflow.com/questions/616645/how-doi-i- python – Scott
你需要一個多平臺解決方案嗎? – Matt