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 22a4d1f commit 9c699d4Copy full SHA for 9c699d4
membership_operators.py
@@ -0,0 +1,8 @@
1
+str = 'Jenny'
2
+print('t' not in str)
3
+List=["Amrata","Hrutuja"]
4
+print("Amrata" in List)
5
+Tuple=(1,2,3)
6
+print(1 not in Tuple)
7
+Dict={"name":"Hrutuja","age":25}
8
+print("Hrutuja" in Dict)
0 commit comments