以下是练习中的代码:
from sys import argv
script, user_name = argv
prompt = '> '
print "Hi %s, I'm the %s script." % (user_name, script)
print "I'd like to ask you a few questions."
print "Do you like me %s?" % user_name
likes = raw_input(prompt)
print "Where do you live %s?" % user_name
lives = raw_input(prompt)
print "What kind of computer do you have?"
computer = raw_input(prompt)
print """
Alright, so you said %r about liking me.
You live in %r. Not sure where that is.
And you have a %r computer. Nice.
""" % (likes, lives, computer)
现在我正在运行 Windows 7,并且正在使用代码运行 CMD 行
python ex14.py myname
我收到此错误:
File "ex14.py", line 3
Python ex14.py, user_name
SyntaxError: invalid syntax