python seek函数whence_file.seek(offset[, whence])
file.seek(offset[, whence])
描述 (Description)
方法seek()設置文件在偏移處的當前位置。 whence參數是可選的,默認為0,表示絕對文件定位,其他值為1表示相對于當前位置的搜索,2表示相對于文件結束的搜索。
沒有回報價值。 請注意,如果打開文件以使用“a”或“a +”進行追加,則在下次寫入時將撤消任何seek()操作。
如果僅使用'a'打開文件以追加模式寫入,則此方法基本上是無操作,但對于在追加模式下打開且啟用讀取的文件(模式'a +')仍然有用。
如果使用't'以文本模式打開文件,則只有tell()返回的偏移是合法的。 使用其他偏移會導致未定義的行為。
請注意,并非所有文件對象都是可搜索的。
語法 (Syntax)
以下是seek()方法的語法 -fileObject.seek(offset[, whence])
參數 (Parameters)offset - 這是文件中讀/寫指針的位置。
whence - 這是可選的,默認為0表示絕對文件定位,其他值為1表示相對于當前位置的搜索,2表示相對于文件結束的搜索。
返回值 (Return Value)
此方法不返回任何值。
例子 (Example)
以下示例顯示了seek()方法的用法。Python is a great language
Python is a great language
#!/usr/bin/python
# Open a file
fo = open("foo.txt", "rw+")
print "Name of the file: ", fo.name
# Assuming file has following 5 lines
# This is 1st line
# This is 2nd line
# This is 3rd line
# This is 4th line
# This is 5th line
line = fo.readline()
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 opend file
fo.close()
當我們運行上面的程序時,它產生以下結果 -Name of the file: foo.txt
Read Line: Python is a great language.
Read Line: Python is a great language.
總結
以上是生活随笔為你收集整理的python seek函数whence_file.seek(offset[, whence])的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: iOS小技能: 创建渐变色背景(提供渐变
- 下一篇: 字母顺序排序(C语言)