Thanks to visit codestin.com Credit goes to github.com
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 ad9d8b8 commit 2cbdc0fCopy full SHA for 2cbdc0f
operate.py
@@ -0,0 +1,9 @@
1
+# no !True
2
+print not True; #false
3
+# no True && False
4
+print True and False; # false
5
+# no True || False
6
+print True or False; # true
7
+print 3 in [1,3] # true
8
+print [1,2,3,4,5][0:2] #[1,2]
9
+print [1,2,3,4,5][2:4] #[3,4]
0 commit comments