name = raw_input("Hello sir! What is your name?")
print ("Nice to meet you " + name + "! Where were you born?")
born = input(" ")
print ("So your name is " + name + " and you were born in " + born + "!")
And im getting the error " Nice to meet you Will! Where were you born? Florida Traceback (most recent call last): File "C:/Users/39.cr/PycharmProjects/untitled/test.py", line 3, in born = input(" ") File "", line 1, in NameError: name 'Florida' is not defined "我不知道我怎麼會做這項工作
'input'應該在這兩種情況下'raw_input'在Python 2。 –