FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Python/ex20.py at master · alnandr/Python · GitHub
alnandr
/
Python
Public
forked from
geekcomputers/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Python
/
ex20.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
33 lines (22 loc) · 656 Bytes
Breadcrumbs
Python
/
ex20.py
Copy path
File metadata and controls
33 lines (22 loc) · 656 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
30
31
32
33
from
sys
import
argv
script
,
input_file
=
argv
def
print_all
(
f
):
print
f
.
read
()
# seek(n) to read a file's content from byte-n
def
rewind
(
f
):
f
.
seek
(
0
)
def
print_a_line
(
line_count
,
f
):
print
line_count
,
f
.
readline
()
current_file
=
open
(
input_file
)
print
"First let's print the whole file:
\n
"
print_all
(
current_file
)
print
"Now let's rewind, kind of like a tape."
rewind
(
current_file
)
print
"Let's print three lines:"
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
)
current_file
.
close
()
Back
|
FazBrowse Home
|
New Git URL