标签:变量 目录 type 技术 close lin water strong .com
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
文件操作模式
标签:变量 目录 type 技术 close lin water strong .com
原文地址:http://blog.51cto.com/357712148/2060659