I have a program that takes input from the user and displays it.
name = input("What is your name?\n")
print("Hello, " + name + "!")
This program is so simple but all I'm getting back from it is
Nameerror: name "(Whatever name is input)" is not defined
What do I do?