Question: This is in python, thank you! Write a function named checknumber - checknumber accepts an integer as an input - checknumber then returns one of

This is in python, thank you!
Write a function named checknumber - checknumber accepts an integer as an input - checknumber then returns one of the following messages back: - The number is less than 10 - The number is between 10 and 20 - The number is greater than 20 - The number is not an integer Write a second function named numberornot - numberornot is used by checknumber to verify if the input number is an integer. - Hint: use try, except, and an if statement to write this function. Your output should look as follows: - checknumber (5) checknumber ('10') checknumber ('hi') - 5 is less than 10 is between 10 and 2 hi is not a number
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
