2013-01-04 50 views

回答

5

name是錯誤的地方;變化:

raw_input("Hello, %s, this is a question: " % name) 

例如:

>>> name = 'Mary' 
>>> raw_input('Hello, %s, this is a question:' % name) 
Hello, Mary, this is a question: 
相關問題