标签:2.7 基于 open 文件 class python2.7 style 程序 code
#基于Python2.7
#若是想Python做到和C++中freopen一样的输入输出重定向效果,即从文件输入输出,可以在程序中加入以下代码
1 import sys 2 sys.stdin=open(‘in.txt‘,‘r‘) 3 sys.stdout=open(‘out.txt‘,‘w‘)
标签:2.7 基于 open 文件 class python2.7 style 程序 code
原文地址:http://www.cnblogs.com/cnXuYang/p/7011463.html