打赏

星辰大海ゞ

That which does not kill us makes us stronger!

导航

2019年6月3日 #

Python将print输出内容保存到指定文件中

摘要: #!/usr/bin/python # -*- coding: utf-8 -*- import sys import os class Logger(object): def __init__(self, filename="Default.log"): self.terminal = sys.stdout self.log = open(fil... 阅读全文

posted @ 2019-06-03 13:20 星辰大海ゞ 阅读(17731) 评论(1) 推荐(0) 编辑