Answers for "try and except in function python"

1

try except python

try:
    Age = int(input("Your Age:- "))
except ValueError:
    print("Age not in Intger form")
Posted by: Guest on June-24-2021

Code answers related to "try and except in function python"

Python Answers by Framework

Browse Popular Code Answers by Language