diff options
author | Marcel Ribeiro Dantas <ribeirodantasdm@gmail.com> | 2023-03-13 11:16:55 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-13 11:16:55 -0300 |
commit | 6ac5983d5abe502ef98ae49e9a4b40de21f3dc73 (patch) | |
tree | 9d070be935f301b23322dc8f50f3b97feb00989a | |
parent | b226b5ce99ef05c1bf0d6d23b6fc88a34d837a3a (diff) | |
parent | 4c79407041c1a1969815368c11003cb5ea20a837 (diff) |
Merge pull request #4524 from smith558/patch-4
[python/en] Improve bool examples
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index c157750f..d9eda60c 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -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 |