1x = input("Input Your Name")
2#lets say I input Bob
3print(x)
4#It should output Bob
1#basic user handling for begginers
2
3x = input("your question here") # when someone types something here that answer will be saved and be used for later
4
5# for example
6print(x)