當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


Python 3 File seek()用法及代碼示例


描述

方法seek()將文件的當前位置設置在偏移量處。 whence 參數是可選的,默認為 0,表示絕對文件定位,其他值為 1,表示相對於當前位置的搜索,2 表示相對於文件末尾的搜索。

沒有返回值。請注意,如果使用 'a' 或 'a+' 打開文件以進行追加,則在下一次寫入時將撤消任何 seek() 操作。

如果僅使用 'a' 在追加模式下打開文件以進行寫入,則此方法本質上是 no-op,但對於在啟用讀取(模式 'a+')的追加模式下打開的文件仍然有用。

如果使用 't' 以文本模式打開文件,則隻有 tell() 返回的偏移量是合法的。使用其他偏移量會導致未定義的行為。

請注意,並非所有文件對象都是可查找的。

用法

以下是語法seek()方法 -

fileObject.seek(offset[, whence])

參數

  • offset- 這是文件中讀/寫指針的位置。

  • whence- 這是可選的,默認為 0 表示絕對文件定位,其他值為 1 表示相對於當前位置的搜索,2 表示相對於文件末尾的搜索。

返回值

此方法不返回任何值。

示例

下麵的例子展示了 seek() 方法的用法。

Assuming that 'foo.txt' file contains following text:
This is 1st line
This is 2nd line
This is 3rd line
This is 4th line
This is 5th line
#!/usr/bin/python3

# Open a file
fo = open("foo.txt", "r+")
print ("Name of the file:", fo.name)

line = fo.readlines()
print ("Read Line:%s" % (line))

# Again set the pointer to the beginning
fo.seek(0, 0)
line = fo.readline()
print ("Read Line:%s" % (line))

# Close opened file
fo.close()

結果

當我們運行上述程序時,它會產生以下結果 -

Name of the file: foo.txt
Read Line:['This is 1st line\n', 'This is 2nd line\n', 'This is 3rd line\n', 'This is 4th line\n', 'This is 5th line']
Read Line:This is 1st line

相關用法


注:本文由純淨天空篩選整理自 Python 3 - File seek() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。