We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4aa863 commit dfe89cbCopy full SHA for dfe89cb
logical_operators.py
@@ -0,0 +1,4 @@
1
+a,b=4,2
2
+print(a>b and b>a)#4>2 and 2<4->1 and 0->0
3
+print(a>b or b<a)#4>2 or 2<4->1 or 1->1
4
+print(not b)
0 commit comments