python/exception_1.py

10 lines
167 B
Python
Raw Normal View History

2022-08-02 13:28:25 +02:00
while True:
try:
x = int(input("What's x: "))
y = int(input("What's y: "))
except:
print("Error")
else:
break
print(x + y)