python 檔案指標

2021-09-25 21:37:48 字數 446 閱讀 7023

f = open('‪c:\\users\ldh\desktop\test.txt','r') #以唯讀方式開啟乙個檔案,獲取檔案控制代碼,如果是讀的話,r可以不寫,預設就是唯讀,

# 在python2中還有file方法可以開啟檔案,python3中file方法已經沒有了,只有open

frist_line = f.readline()#獲取檔案的第一行內容,返回的是乙個list

print(frist_line)#列印第一行

# res = f.read()#獲取除了第一行剩下的所有檔案內容

# print(res)

# f.close()#關閉檔案

## f = open('file.txt')

# for line in f:

# print(line)

python 檔案指標及檔案覆蓋

1 檔案純淨模式延伸 r t 可讀 可寫 w t 可寫 可讀 with open b.txt w t encoding utf 8 as f print f.readable print f.writable a t 可追加寫 可讀 2 控制檔案指標移動 方法 f.seek offset,whenc...

Python檔案操作之指標

在檔案讀取過程中使用了指標這個概念 在一開始指標是指向檔案內容的開端的,伴隨著讀寫的進行指標一步一步往後挪 例如 f open g liumang.txt r data f.read tell 是求指標在 print f.tell print type data data f.write asdfd...

python 檔案之指標操作

一 檔案內指標移動的單位是什麼?讀出二進位制解碼的到的字串 只有t模式下,read n n是字元個數 with open a.txt mode rt encoding utf 8 as f 你好呀hello word data f.read 6 print f.tell 12 print data ...