Respuesta :
Answer:
See explaination
Explanation:
def get_an_input_integer():
in_string = input('Enter your favorite whole number:\n')
try:
in_integer = int(in_string)
return in_integer
except:
return None
The function illustrates the use of exceptions in programs.
Exceptions are used to prevent programs from failing
The function in Python, where comments are used to explain each line is as follows:
#This defines the function
def getInput():
#This gets input from the user
intINput = input('Number: ')
#This opens the try block
try:
#This returns the integer input
return int(intINput)
#If the input is not an integer
except:
#This returns None
return None
Read more about exceptions at:
https://brainly.com/question/25012091