Gather around, gather around. Come wizards and newbies alike.
ITT we will be sharing advanced and hacky Python code.
Can you tell me what this will print?
class MindBroken(Exception):
pass
def func() -> int:
try:
raise MindBroken('>Anubis mascot')
return 1
except Exception:
return 2
finally:
return 3
print(func())