Tell() and Seek() function

 Tell() function

file=open("puchu.txt")
file.seek(61)
a=file.read()
file.seek(10)
print(file.tell())

print(a)

Comments

Popular posts from this blog

Become Healthy Goal - Python Program

Calculator in C++

Interpretation vs Compilation