tep 1: First if Condition
-
code = 501, so we check:
-
code >= 100 → True
- code <= 200 → False
- (code >= 100 and code <= 200) → (True and False) → False
not (False) → True
-
Since the condition is True, it executes:
Output: 1 ✅
Step 2: Second if Condition
code = 501, so we check:
-
code >= 400 → True
- code == 501 → True
- (code >= 400 or code == 501) → (True or True) → True
not (True) → False
-
Since the condition is False, it does not execute print("2").
Final Output
"2" is not printed because its condition evaluates to False.
0 Comments:
Post a Comment