7,369 questions
10,368 answers
573 users
fh = open("d:\\data.txt") print(fh.tell()) fh.seek(3) print(fh.tell()) s = fh.read(2) print(s) ''' run: 0 3 ho '''