Skip to content

Commit 89f44a2

Browse files
authored
With Python3 refactoring code
Now Python 3 is the mainstream.
1 parent 7fb2c5e commit 89f44a2

File tree

1 file changed

+5
-10
lines changed

1 file changed

+5
-10
lines changed

ex20.py

+5-10
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44

55

66
def print_all(f):
7-
print
8-
f.read()
7+
print(f.read())
98

109

1110
# seek(n) to read a file's content from byte-n
@@ -14,22 +13,18 @@ def rewind(f):
1413

1514

1615
def print_a_line(line_count, f):
17-
print
18-
line_count, f.readline()
16+
print(line_count, f.readline())
1917

2018

2119
current_file = open(input_file)
2220

23-
print
24-
"First let's print the whole file:\n"
21+
print("First let's print the whole file:\n")
2522
print_all(current_file)
2623

27-
print
28-
"Now let's rewind, kind of like a tape."
24+
print("Now let's rewind, kind of like a tape.")
2925
rewind(current_file)
3026

31-
print
32-
"Let's print three lines:"
27+
print("Let's print three lines:")
3328
current_line = 1
3429
print_a_line(current_line, current_file)
3530

0 commit comments

Comments
 (0)