Here's my code:
name = input("What's your name? ")
print("Nice to meet you " + name + "!")
But when i enter a name, for example "john", it gives me this error:
Traceback (most recent call last):
File "name.py", line 1, in <module>
name = input("What's your name? ")
File "<string>", line 1, in <module>
NameError: name 'john' is not defined
The version of python i'm using is "2.7.10".