Exercise 15: Reading Files

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()
原文地址:https://www.cnblogs.com/hluo/p/4045441.html