> return actually returns from the function if it is not in an expression
So then what if we have
result =
if cond:
100
elif otherCond:
result
else:
return
Run
It's now
return =
if cond:
100
elif otherCond:
return
else:
return # wait this does not work we cannot return!
Run
