Ejemplo 1: entero de entrada de Python
# 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')
Ejemplo 2: entrada de usuario de tipo int en python
#python program
#taking int input from user
#printing them
#num1 from user
num1 = int(input("Enter a number of type int"))
print(num1)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)