summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--python.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 6b2a40de..390c7b76 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -62,7 +62,7 @@ to Python 2.x. Look for another tour of Python 3 soon!
+True and False #=> False
+False or True #=> True
+
-+# Note with ints
++# Note using Bool operators with ints
+0 and 2 #=> 0
+-5 or 0 #=> -5
+0 == False #=> True