fix(curriculum): format or operator correctly in python review basics lesson (#66190)

This commit is contained in:
renyap
2026-03-03 01:03:05 +05:30
committed by GitHub
parent 199379b27a
commit 0e484c3cd7
@@ -803,7 +803,7 @@ else:
print('You are not eligible to vote')
```
- **`or` Operator**: This operator returns the first operand if it is truthy, otherwise, it returns the second operand. An or expression results in a truthy value if at least one operand is truthy. Here is an example:
- **`or` Operator**: This operator returns the first operand if it is truthy, otherwise, it returns the second operand. An `or` expression results in a truthy value if at least one operand is truthy. Here is an example:
```py
age = 19