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()
19 July 2019 3241 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap