You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def testinputs(num1, num2): if not isinstance(num1, int) or not isinstance(num2, int): raise ValueError("Both inputs must be integers") return num2 - num1 try: result= testinputs( 100, 33) print(result) except ValueError as err: print(err) print("EOS")