Python学习笔记之文件操作

Python学习笔记之文件操作。

文件操作模式

  1. r 只读
  2. w 只写
  3. a 只追加
  4. r+ 读写,文件不存在时不会创建
  5. w+ 读写,文件不存在时创建
  6. a+ 追加,文件不存在时创建

文件操作方法

  1. open
  2. read
  3. readline
  4. readlines
  5. write
  6. writelines
  7. close
  8. with 使用with语句,可以在代码块结束后自动关闭文件
  9. flush
  10. tell
  11. seek

示例,从一个文件中读取文件并写入到另一文件中

file2 = open('test2.txt', 'w+')

with open('test.txt','r') as file1:
  file2.write(file1.read())

file2.close()

with open('test2.txt','r') as file3:
  lines = [x.rstrip() for x in file3.readlines()]

print(lines)

Leave a Comment

豫ICP备19001387号-1