Update python.html.markdown

This commit is contained in:
Stanislav (Stanley) Modrak 2022-10-26 18:07:08 +01:00 committed by GitHub
parent 0f97d7cc87
commit e3ee5b81fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,6 +9,7 @@ contributors:
- ["Rommel Martinez", "https://ebzzry.io"]
- ["Roberto Fernandez Diaz", "https://github.com/robertofd1995"]
- ["caminsha", "https://github.com/caminsha"]
- ["Stanislav Modrak", "https://stanislav.gq"]
filename: learnpython.py
---
@ -81,7 +82,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