A question from my reading of Learn Python The Hard Way:
y = raw_input("Name? ")
puts the result into variable y.
Then on line 9 in the following code, raw_input("?"), where does the result go?
from sys import argv
script, filename = argv
print "We're going to erase %r." % filename
print "If you don't want that, hit CTRL-C (^C)."
print "If you do want that, hit RETURN."
raw_input("?")
print "Opening the file..."
target = open(filename, 'w')
...