Lines Matching refs:f2
81 with open("foo_file.txt") as f2:82 print(f2.read())83 print(f2.tell())85 f2.seek(0, 0) # SEEK_SET86 print(f2.read(1))88 f2.seek(0, 1) # SEEK_CUR89 print(f2.read(1))90 f2.seek(2, 1) # SEEK_CUR91 print(f2.read(1))93 f2.seek(-2, 2) # SEEK_END94 print(f2.read(1))