当前位置:首页 » python教程 » 正文

python写文件时覆盖原来的实例方法

看: 1039次  时间:2020-08-25  分类 : python教程

python写文件时覆盖原来写的方法:

使用“open('文件名','w')”语句,以写模式打开文件,然后使用write函数写文件

最后用close函数关闭打开的文件,文件原来的内容就会被覆盖了

示例如下:

对文件操作之前的文件内容

企业微信截图_20200619150413.jpg

对文件操作之后的文件内容

企业微信截图_20200619150530.jpg

完整代码如下:

file = open('ss.txt', 'w')
file.write('123456789')
file.close()

<p><span style="color: #ff0000">知识点扩展:</span></p>
<p><strong>python写文件</strong></p>

```python  
txt = ‘landmark.txt'
wrf = open(txt, ‘w')
wrf.write(‘test01' + ‘\n')
wrf.close()

txt = ‘landmark.txt'
wrf = open(txt, ‘w')
wrf.write(‘test02' + ‘\n')
wrf.close()

结果:

test02

不覆盖原来内容

txt = ‘landmark.txt'
wrf = open(txt, ‘w')
wrf.write(‘test01' + ‘\n')
wrf.close()

txt = ‘landmark.txt'
wrf = open(txt, ‘a')
wrf.write(‘test02' + ‘\n')
wrf.close()

结果:

test01
test02

到此这篇关于python写文件时覆盖原来的实例方法的文章就介绍到这了,更多相关python写文件时如何覆盖原来写的内容请搜索python博客以前的文章或继续浏览下面的相关文章希望大家以后多多支持python博客!

<< 上一篇 下一篇 >>

搜索

推荐资源

  Powered By python教程网   鲁ICP备18013710号
python博客 - 小白学python最友好的网站!