python覆盖写入,追加写入的实例

时间:2021-12-22 08:20:13

追加写入:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# -*- coding:utf-8 -*-
 
# a 指定打开文件的模式,a为追加  r为只读
 
a=open('test.txt', 'a')
 
a.write('追加写入')
 
a.close()
 
 
 
f=open('test.txt', 'r')
 
print f.read()

覆盖写入:

?
1
a=open('test.txt', 'w')

以上这篇python覆盖写入,追加写入的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/jpmsdn/article/details/86302312