我在使用Learn Python The Hard Way來學習Python。這是非常好的和有效的,但有一次我碰到了一個問題。我搜索了網頁,但找不到答案。 這裏是我的問題:使用argv時出錯
之一練習告訴做到這一點:
from sys import argv
script, filename = argv
然後前進到做的事情,我明白:
print "we are 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')
什麼第一部分意思?
P.S.我得到的錯誤是:後
的SyntaxError意外的字符續行符
請提供完整的錯誤信息 – skayred