基本操作

  1. # 打开文件
  2. file = open("README")
  3. # 读取文件
  4. text = file.read()
  5. print(text)
  6. # 关闭文件
  7. file.close()
  1. # 打开文件
  2. src_file = open("README")
  3. des_file = open("README[副本]", "w")
  4. # 复制文件
  5. while True:
  6. text = src_file.readline()
  7. if not text:
  8. break
  9. des_file.write(text)
  10. # 关闭文件
  11. src_file.close()
  12. des_file.close()

文件编码

第一行,声明文件编码

  1. # *_* coding:UTF-8 *_*
  2. hello_str = "hello,你好"
  3. print(hello_str)