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)
1# if you want to ask the user to input anything, use the keyword "input"
2
3# example
4
5a = input("What is your name") # the user will be prompted to answer the question
6
7print(a) # this allows the user to actaully see the question or anything