Created
September 14, 2011 08:02
-
-
Save adaptives/1216072 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # LPTHW - Exercise 20 | |
| from sys import argv | |
| script, input_file = argv | |
| def print_all(f): | |
| print f.read() | |
| def rewind(f): | |
| f.seek(0) | |
| def print_a_line(line_count, f): | |
| print line_count, f.readline() | |
| current_file = open(input_file) | |
| print "Let's first 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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment