最新方法,用with open()

import os
t = 5
s = 'hello world!'
with open('test.txt','a') as file0:
    print('%d' % t,'%s' % s,file=file0)

第一种方法:在代码import之后,其余所有代码之前执行,这个代码块之前的print都不会输出的

import sys
import os
 
class Logger(object):
    def __init__(self, filename="Default.log"):
        self.terminal = sys.stdout
        self.log = open(filename, "a")
 
    def write(self, message):
        self.terminal.write(message)
        self.log.write(message)
 
    def flush(self):
        pass


path = os.path.abspath(os.path.dirname(__file__))
type = sys.getfilesystemencoding()
sys.stdout = Logger('a.txt')
 
print(path)
print(os.path.dirname(__file__))
print('------------------')
for i in range(5, 10):
    print("this is the %d times" % i)

第二种方法:在终端执行

python<你的python文件.py>outputfile.txt

参考链接:

1.https://blog.csdn.net/young2415/article/details/76595318

2.https://blog.csdn.net/w76190504/article/details/81085055

Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐