open() 函数常用形式是接收两个参数:文件名(file)和模式(mode)。
# _*_ coding: utf-8 _*_
# mode = w,当存在此文件,覆盖读写。不存在则新建。
f = open("d:/testfile.txt","w")
f.write("-->this a testfile...\n")
f.close()
# 打印内容。mode为空时,默认只读
f = open("d:/testfile.txt")
content01 = f.read()
print (content01)
# mode = a,当存在此文件,追加读写。不存在则新建。
f = open("d:/testfile.txt","a")
f.write("-->this a new testfile...\n")
f.close()
# 打印内容
f = open("d:/testfile.txt")
content02 = f.read()
print (content02)
运行结果:
-->this a testfile...
-->this a testfile...
-->this a new testfile...
来源:CSDN
作者:王怕怕升职记
链接:https://blog.csdn.net/woshiyigerenlaide/article/details/104156968