0
Why didnât this work
print("what is your name ") input() print("Hej"+input)
1 Answer
+ 2
You need to store the user's input in a variable if you want to use it later in your program.
For example:
x = input("What is your name?")
print("Hej", x)
print("what is your name ") input() print("Hej"+input)