>>109044900
Sure, returns can fail. Here's one that will, so the error msg in Except gets printed:
#!/usr/bin/env python3
import sys
def myfunc():
text = 'imma chargin muh lazer'
num = 42
try:
return text + num
except BaseException as e:
print(f'something happened: {e}', file=sys.stderr)
myfunc()
>what if the Return under "except" fails too?
Its exception would get thrown as per normal