Python 文件 IO
以下代码演示了Python基本的文件操作,包括 open,read,write:
实例(Python 3.0+)
# Filename : test.py# author by : www.runoob.com# 写文件withopen("test.txt", "wt")asout_file: out_file.write("该文本会写入到文件中\n看到我了吧!")# Read a filewithopen("test.txt", "rt")asin_file: text = in_file.read()print(text)
执行以上代码输出结果为:
该文本会写入到文件中
看到我了吧!