0

Why didn’t this work

print("what is your name ") input() print("Hej"+input)

19th Jan 2019, 3:10 AM
jakob8888
jakob8888 - avatar
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)
19th Jan 2019, 3:24 AM
Diego
Diego - avatar