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 93d5e69 commit a9fab0fCopy full SHA for a9fab0f
relation operators.py
@@ -0,0 +1,14 @@
1
+a,b=4,2
2
+print(a>b)
3
+print(a<b)
4
+print(a>=b)
5
+print(a<=b)
6
+print(a!=b)
7
+print(a==b)
8
+x,y=5,5
9
+print(x>y)
10
+print(x<y)
11
+print(x>=y)
12
+print(x<=y)
13
+print(x!=y)
14
+print(x==y)
slicing.py
@@ -0,0 +1,5 @@
+# a="welcome"
+# print(a[1:4])
+#print(len("Harry"))
+i="Tusharisgood"
+print(i[:1:-1])
0 commit comments