-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex20.py
29 lines (22 loc) · 832 Bytes
/
ex20.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from sys import argv
script, input_file = argv
def print_all(f): #Lera her shtek dabney abe, yan pesh ewe penasey value ka bkay ba variable ka ch file e werdegret.
print(f.read())
def rewind(f):
print(f.seek(20)) #Lera wtman le naw perrey test.txt 20 bcho peshewe enja nwsynakan pyshasn bde. ew jmareye be dlly xot bgorre.
def print_a_line(line_count, f):
print(line_count, f.readline())
current_file = open(input_file)
print("Lets print whole file")
print_all(current_file)
print("Let's Rewind, kind of liek a tape")
rewind(current_file)
print("Lets print three line")
current_line = 1
print_a_line(current_line, current_file)
current_line = current_line + 1
print_a_line(current_line, current_file)
current_line = current_line + 1
print_a_line(current_line, current_file)
x= open(input_file)
print(x.readline())