1. 程式人生 > >Python文字操作---檔案指標

Python文字操作---檔案指標

1.seek():跳到指定的檔案位置

# coding:utf-8

#遞迴檢索目錄下的檔名稱(列表)
allfile = []
# 如果沒有這個檔案,新建一個檔案,檔名為:myAllfile.txt
fileOpen = open("D:\pythonText\myAllfile.txt", "r")


if __name__ == '__main__':

     #file.seek(16,0) #0檔案調到從開頭開始第十五個字元,一個換行符
    mystr=file.readline() #讀取英文,遇到換行符
    print(mystr)
    #file.seek(0,0) #跳轉檔案指標, 開頭
    file.seek(200,0) #io.UnsupportedOperation: can't do nonzero end-relative seeks
    mystr=file.readline() #讀取英文,遇到換行符
    print(mystr)
    #print(len(mystr)) 求長度
    file.close()