Execution Flow:
- The first if(True) condition is True, so the code inside it runs.
- It prints "0".
- Inside the first if block, there's another if(True), which is also True.
- It prints "1".
- The else block is skipped because the first if condition was True.
Output:
0 Comments:
Post a Comment