I am making a simple program that repeats what I input. The current code is this:
print("Please enter your username.")
n = str(input(">> "))
print("Welcome, ",n)
However, when I run it and input, say, John, it would print the error: John is undefined, or something very similar to that. Any ideas why? Solutions?