python readline,seek
摘要:
seek():移动文件读取指针到指定位置tell():返回文件读取指针的位置seek()的三种模式: (1)f.seek(p,0) 移动当文件第p个字节处,绝对位置(2)f.seek(p,1) 移动到相对于当前位置之后的p个字节 (3)f.seek(p,2) 移动到相对文章尾之后的p个字节code: f = open('d:/hello.txt','w') f.write('hello my friend python!\nsecond line.') f = open('d:\hello.txt','r') (1 阅读全文
posted @ 2012-10-12 17:00 漩涡鸣人 阅读(3507) 评论(0) 推荐(1) 编辑