1、文件打开/关闭/读/写
#!/usr/bin/python # -*- coding: UTF-8 -*- # 打开一个文件 fo = open("foo.txt", "wb") fo.write( "www.runoob.com!\nVery good site!\n"); # 关闭打开的文件 fo.close() # 打开一个文件 fo = open("foo.txt", "rb") #Windows下必须用rb打开,否则用r+会导致fo.tell获取的文件位置有错误! str = fo.read(10); print "读取的字符串是 : ", str # 查找当前位置 position = fo.tell(); print "当前文件位置 : ", position # 把指针再次重新定位到文件开头 position = fo.seek(0, 0); str = fo.read(10); print "重新读取字符串 : ", str # 关闭打开的文件 fo.close()
原文:http://www.cnblogs.com/ruanchao/p/6459490.html