seek() and tell() functions on files in Python
f = open("file_name.txt")
print(f.seek(55)) #resets reading from 55th character
print(f.readline(), end="")
print(f.tell()) #shows where the file pointer currently is
print(f.readline(), end="")
print(f.tell()) #shows where the file pointer currently is
print(f.readline(), end="")
print(f.tell()) #shows where the file pointer currently is
f.close()
Comments
Post a Comment
Write something to CodeWithAbdur!