[Python]python3将print中的输出内容保存至txt文件

我们的目标是将print输出导入txt,实现方法如下:

log = open("a.txt",mode="a",encoding="utf-8")
for i in range(100):
    a=b()
    print(a,file = log)
log.close()

    原文作者:IT鹅
    原文地址: https://blog.csdn.net/qq_43332010/article/details/124364651
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞