发布时间:2019-08-31 09:44:28编辑:auto阅读(1416)
Python 提供了必要的函数和方法进行默认情况下的文件基本操作
open()函数
语法:
File_object= open(file_name [, access_mode][, buffering])
fp = open("test.txt","w")
fp.write("我是最帮的!!")
fp.close()
结果:
读取文件:
fp = open("test.txt","r")
print fp.readline()
fp.close()
结果
如:
with open("text.txt","r") as pf:
for i in pf:
print i
文件操作模式
上一篇: Python进程学习
下一篇: python实现switch语句
47873
46438
37325
34767
29339
26002
24953
19971
19571
18065
5813°
6438°
5954°
5980°
7086°
5932°
5973°
6464°
6430°
7809°