Skip to content

Commit 18299f7

Browse files
authored
Update 05_Arithmetic and Logical Operators.md
Correct output of code
1 parent 0caf1b6 commit 18299f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

05_Arithmetic and Logical Operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ z = 20
6868

6969
# Combining arithmetic and logical operators
7070
result = (x + y > z) and (z - x < y)
71-
print(result) # True
71+
print(result) # False
7272
```
7373

7474
---

0 commit comments

Comments
 (0)