I am trying to make a simple, what is your name? hello so and so. But whenever I run it it says the name is "none" any help?
Code
Thanks Guys!
Code
name = print("Hi! What's your name? ") print(name) print("Hi, ", name, ".") input("\n\nPress the enter key to exit.")Output:Output:Hi! What's your name? None Hi, None .Press the enter key to exit.Thanks Guys!
