码迷,mamicode.com
首页 > 编程语言 > 详细

Python重定向到文件

时间:2015-06-29 21:58:26      阅读:788      评论:0      收藏:0      [点我收藏+]

标签:

 

1.方式1

__file__ = open(rlog.txt, ‘a)
print >>__file__, "hello, world!"
__file__.close()

 

2.方式2

__stdout__ = sys.stdout
sys.stdout = open(rlog.txt, ‘a)
print "hello, world!"
sys.stdout.close()
sys.stdout = __stdout__

 

3.方式3

#-*- coding:utf8 -*-
import sys

class stdout:
    def __init__(self):
        self.buff = []
        self.__file__ = open(rlog.txt, ‘a)
        self.__stdout__ = sys.stdout

    def write(self, s):
        self.buff.append(s)
        self.__file__.write(s)
        self.__file__.flush()
        self.__stdout__.write(s)

    def flush(self):
        self.buff = []
        self.__stdout__.flush()

    def close(self):
        self.__file__.close()

    def reset(self):
        sys.stdout = self.__stdout__

if __name__ == __main__:
    sys.stdout = stdout()

    for i in xrange(10):
        print "hello, world!"

    sys.stdout.close()
    #sys.stdout.__file__.close()
    sys.stdout.reset()
    #sys.stdout = sys.stdout.__stdout__
    
    print "im back!"

 

Python重定向到文件

标签:

原文地址:http://www.cnblogs.com/lichmama/p/4608344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!