Build your intuition. Fill in the missing part by typing it in.
What will be the output of following code block in Python?
PYTHON
1try:
2 return 1
3except:
4 return 2Write the missing line below.


What will be the output of following code block in Python?
1try:
2 return 1
3except:
4 return 2Write the missing line below.
