def func1():
try:
func2()
except:
print(1)
print(2)
def func2():
try:
func3()
except:
print(3)
print(4)
def func3():
raise Exception("5")
print(6)
func1()
What's the output of the above code
Anonymous Quiz
7%
5 3 4 2
27%
3 4 2
7%
1 2
13%
3 4 1 2
0%
5 1 2
47%
Exception: 5
🔥1