Lines Matching refs:f
1 f = open("io/data/file1", "rb") variable
2 print(f.seek(6))
3 print(f.read(5))
4 print(f.tell())
6 print(f.seek(0, 1))
7 print(f.read(4))
8 print(f.tell())
10 print(f.seek(-6, 2))
11 print(f.read(20))
12 print(f.tell())
14 print(f.seek(0, 0))
15 print(f.read(5))
16 print(f.tell())
18 f.close()
21 f = open("io/data/file1", "rt") variable
22 print(f.seek(6))
23 print(f.read(5))
24 print(f.tell())
25 f.close()
28 f = open("io/data/file1", "r") variable
29 f.close()
31 f.seek(1)