Python 文件 IO

以下代码演示了Python基本的文件操作,包括 open,read,write:

  1. # Filename : test.py
  2. # author by : python3
  3.  
  4. # 写文件
  5. with open("test.txt", "wt") as out_file:
  6. out_file.write("该文本会写入到文件中\n看到我了吧!")
  7.  
  8. # Read a file
  9. with open("test.txt", "rt") as in_file:
  10. text = in_file.read()
  11.  
  12. print(text)

执行以上代码输出结果为:

  1. 该文本会写入到文件中
  2. 看到我了吧!