python 读写文件
Posted RainDream
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读写文件相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python # -*- coding: utf-8 -*- if __name__ == ‘__main__‘: logname = ‘./new_file.txt‘ with open(logname,‘w‘) as logfile: with open(‘./5.txt‘, ‘r‘) as f: for line in f.readlines(): logfile.write(line.strip()+‘\n‘)
以上是关于python 读写文件的主要内容,如果未能解决你的问题,请参考以下文章