幽灵资源网 Design By www.bzswh.com
本文实例讲述了python文件写入的用法。分享给大家供大家参考。具体分析如下:
Python中wirte()方法把字符串写入文件,writelines()方法可以把列表中存储的内容写入文件。
f=file("hello.txt","w+") li=["hello world\n","hello china\n"] f.writelines(li) f.close()
文件的内容:
hello world hello china
write()和writelines()这两个方法在写入前会清除文件中原有的内容,再重新写入新的内容,相当于“覆盖”的方法。如果需要保留文件中原有的内容,只是需要追加新的内容,可以使用“a+”模式打开文件。
f=file("hello.txt","a+") new_context="goodbye" f.write(new_content) f.close()
此时hello.txt中的内容如下所示:
hello world hello china goodbye
实践:
> f=file("hello.txt","w+") > li=["hello world\n","hello china\n"] > f.writelines(li) > f.close() > > f=file("hello.txt","a+") > new_context="goodbye" > f.write(new_content) > f.write(new_content) > f.close()
结果:
hello world hello china goodbyegoodbye
希望本文所述对大家的Python程序设计有所帮助。
标签:
python,文件写入
幽灵资源网 Design By www.bzswh.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
幽灵资源网 Design By www.bzswh.com
暂无评论...