码迷,mamicode.com
首页 > 编程语言 > 详细

python修改文件

时间:2017-04-19 10:28:25      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:python   修改文件   

## 修改文件

with open("test.txt", "w+") as f:

    f.write("I am a dba.\n")

    f.write("I am a boy.\n")

    f.seek(0)

    print(f.read())

f = open("test.txt", "r")

with open("test.txt.bak", "w+") as f_n:

    for l in f:

        l = l.replace("dba", "developer")  # 对指定内容就行替换修改

        f_n.write(l)

    f_n.seek(0)

    print(f_n.read())

f.close()

if "test.txt" in os.listdir("."):

    os.remove("test.txt")

os.rename("test.txt.bak", "test.txt")


python修改文件

标签:python   修改文件   

原文地址:http://90sirdb.blog.51cto.com/8713279/1917205

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!