Learn Python The Hard Wayを読んだときの質問:
y = raw_input("Name? ")
結果を変数yに入れます。
次に、次のコードraw_input( "?")の9行目で、結果はどこに表示されますか?
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')
...