1#just get input
2test = input()
3
4#add a custom message
5test = input("Please enter your information: ")
6
7#turning what is inputed into a differnt type of data
8test = int(input("Please enter your information: "))
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
3a = input("How old are you") # the user will be prompted to answer the question.
4
5#The answer is stocked into a (which is here a string and not an int !).
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