Introduction
Write a Python program to input a number, if it is not a number generate an error message. I have used python 3.7 compiler for debugging purpose.
while True: try: a = int(input("Input a number: ")) break except ValueError: print("\nThis is not a number. Try again...") print()