发布时间:2019-09-22 07:46:08编辑:auto阅读(1921)
python 读写文件磁盘上的文件,是通过调用操作系统系统的接口来实现的,通过操作系统提供的接口,来读取或者写入文件,Python 读取文件的步骤如下
# 使用 open
1、打开文件
f1 = open('t1.txt', 'r',encoding='utf-8')2、读取文件(文件存在的话,不存在的话,会报FileNotFoundError 错误)
data = f1.read()
print(data)
hello world
hello world
hello world
hello world
hello world
假设文件不存在的话,比如打开文件 t2.txt

3、关闭文件
f1.close()
使用 with open 方法,当文件读写完成后,会自动帮我们调用 close 方法
with open('t1.txt', 'r') as f1:
print(f1.read())输出:
hello world
hello world
hello world
hello world
hello world
上一篇: (3)Zabbix宏设置
下一篇: hack with python(二)
51383
50859
41448
38235
32737
29637
28450
23360
23294
21625
1719°
2451°
2044°
1978°
2334°
2010°
2719°
4553°
4360°
3109°