# note: The instructions state to use "text.txt" but an error comes up stating that the file does not exist
# as a work around, I used "output.txt" instead
my_file = open("output.txt","r")
print my_file.readline()
print my_file.readline()
print my_file.readline()
my_file.close()
No comments:
Post a Comment