Merge pull request #4524 from smith558/patch-4

[python/en] Improve bool examples
This commit is contained in:
Marcel Ribeiro Dantas 2023-03-13 11:16:55 -03:00 committed by GitHub
commit 6ac5983d5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ False - 5 # => -5
# Comparison operators look at the numerical value of True and False
0 == False # => True
1 == True # => True
2 > True # => True
2 == True # => False
-5 != False # => True