python user input integer code example

Example 1: how to say that an input needs to be a number python

try:
   val = int(userInput)
except ValueError:
   print("That's not an int!")

Example 2: python input integer

# To prompt the user to input an integer we do the following:
valid = False

while not valid: #loop until the user enters a valid int
    try:
        x = int(input('Enter an integer: '))
        valid = True #if this point is reached, x is a valid int
    except ValueError:
        print('Please only input digits')

Example 3: how to get int input in python

num = int(input("inter your number: "))

print(num)

Example 4: user input of int type in python

#python program 
#taking int input from user
#printing them

#num1 from user
num1 = int(input("Enter a number of type int"))
print(num1)