Python实现的读取文件内容并写入其他文件操作示例
时间:2022-04-02 10:28 作者:admin
本文实例讲述了python/' target='_blank'>python实现的读取文件内容并写入其他文件操作。分享给大家供大家参考,具体如下:
文件目录结构,如图:
read_file.py是工作文件,file_test.py是读取文件源,write_test.py是写入目标文件。
文件A:file_test.py
#coding=utf-8for i in range(1, 10): print i
文件B:read_file.py
# coding=utf-8# 打开件Af = open('./file_test.py', 'rb')# 读取文件A内容print '---------- read file ---------'content = f.read()print 'content = ', content# 打开文件Bw = open('./write_test.py', 'wd')print '--------- write file --------'# 将文件A的内容,写入文件Bw.write(content)print '--------- close file --------'# 关闭文件Bw.close()# 关闭文件Bf.close()print '--------- end ----------'
文件C:write_file.py
#coding=utf-8for i in range(1, 10): print i
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python文件与目录操作技巧汇总》、《Python文本文件操作技巧汇总》、《Python数据结构与算法教程》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》及《Python入门与进阶经典教程》
希望本文所述对大家Python程序设计有所帮助。
(责任编辑:admin)