python程式設計從入門到實踐 p101
阿新 • • 發佈:2018-11-07
python程式設計從入門到實踐 p101
python程式設計從入門到實踐 p101
python2.7下:
prompt = “If you tell us who you are, we can personalize the messages you see.”
prompt += “\nWhat is your first name? "
name = input(prompt)
print(”\nHello, " + name + “!”)
顯示:
raceback (most recent call last):
File “C:/Python27/tempt.py”, line 3, in
name = input(prompt)
File “”, line 1, in
NameError: name ‘Eric’ is not defined
修改為raw_input後執行成功。
prompt = “If you tell us who you are, we can personalize the messages you see.”
prompt += “\nWhat is your first name? "
name = raw_input(prompt)
print(”\nHello, " + name + “!”)