What does the following code print to console?
if True: print (101) else: print (202)
101
Reason — In Python, if True: will always evaluate to True, so the code block under the if branch will execute.
if True:
if