While working through this exercise I ran into a problem.
from sys import argv from os.path import exists script, from_file, to_file = argv print \"Copying from
in_file = open(from_file).read(); out_file = open(to_file,'w').write(in_file)