f.seek(offset,whence)offset代表文件的指针的偏移量,单位是字节byteswhence代表参考物,有三个取值# 0:参照文件的开头# 1:参照当前文件指针所在位置# 2: 参照文件末尾# ps:快速移动到文件末尾f.seek(0,2) #强调:其中whence=1和whence=2只能在b模式下使用f=open('c.txt',mode='rt',encoding='utf-8')# f.seek(9,0) 每3个字节是一个汉字print(f.tell()) # 每次统计…