文件seek方法補充

1.若不指定括號中的1,系統默認爲0 f=open(‘test’,‘r’,encoding=‘utf-8’) print(f.tell()) f.seek(10) print(f.tell()) f.seek(3) print(f.tell()) 輸出結果爲0,10,3 2.指定爲1,只能使用b模式 f=open(‘test’,‘rb’) print(f.tell()) f.seek(10,1)
相關文章
相關標籤/搜索