1# An input is requested and stored in a variable
2test_text = input ("Enter a number: ")
3
4# Converts the string into a integer. If you need
5# to convert the user input into decimal format,
6# the float() function is used instead of int()
7test_number = int(test_text)
8
9# Prints in the console the variable as requested
10print ("The number you entered is: ", test_number)
11
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