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 000b707 commit 3fe9044Copy full SHA for 3fe9044
identity_operators.py
@@ -0,0 +1,8 @@
1
+a=5
2
+b=2
3
+c='5'
4
+print(a is b)
5
+print(a is not c)
6
+print(id(a))
7
+print(id(b))
8
+print(id(c))
0 commit comments