TRY AND EXCEPT

try:
number=int(input("Enter the number"))
print(number)
except:
print("Invalid Input")💀

Comments