try, raise, assert, except 22/5
try:
x=1
y=x+1
if y==2:
raise
except:
print("y is 2")
def a():
print("function a")
return False
try:
x=1
y=x+1
if y==2:
assert a(), 'assertion error' #assert exp1, exp2
except AssertionError as msgg:
print(msgg)INFO