下面是使用标准输出模块的例子。
#redirect.py
import sys
f = open('t.txt', 'w')
stdout = sys.stdout -----> first one
sys.stdout = f -----> second one
print 'Sample output'
print 'Good'
print 'Good'
f.close()
sys.stdout = stdout -----> third one
我不明白为什么上面这三件事的含义。
提前感谢=)