I have the following code:
from sys import argv
script, filename = argv
txt = open(filename)
print "Here's your file %r:" % filename
print txt.read()
print "Type the filename again:"
file_again = raw_input("> ")
txt_again = open(file_again)
print txt_again.read()
And in one of the exercises in my book it says "Have your script also do a close() on the txt and txt_again variables. Itβs important to close files when you are done with them.
How can I close the variables?