当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。