- 读取文件,没有该名称文件的时候会创建该名称的文件
with open('/path/to/file', 'r') as f:
print(f.read())
- 写文件,写入文件是会覆盖掉原来的内容
with open('/Users/michael/test.txt', 'w') as f:
f.write('Hello, world!')
- 在文件中追加内容,追加的内容在文件的最后一行的下一行
with open('f.txt', 'a') as f:
for i in range(0, 10):
f.write(str(i))