We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf64946 commit 7a89ad9Copy full SHA for 7a89ad9
2 files changed
BooleanExpressions.py
@@ -0,0 +1,15 @@
1
+print(5 == 5)
2
+print(5 == 6)
3
+print(type(True))
4
+
5
+x = 3
6
+y = 4
7
8
+print(x == y) # (x is equal to y)
9
+print(x != y) # (x is not equal to y)
10
+print(x > y ) # (x is greater than y)
11
+print(x < y )# (x is less than y)
12
+print(x >= y) # (x is greater than or equal to y)
13
+print(x <= y) # (x is less than or equal to y)
14
+print(x is y) # (x is the same as y)
15
+print(x is not y) # (x is not the same as y)
README.md
@@ -10,6 +10,8 @@
3. [Comments](Comments.py)
4. [New Line](NewLine.py)
5. [Math Operations](MathOperations.py)
+6. [Variables](Variables.py)
+7. [Boolean Expressions](BooleanExpressions.py)
16
###### All of this code is licensed to Genesis Code and may not be used without permission.
17
0 commit comments