Skip to content

Commit 88c45da

Browse files
committed
Create ts.py
1 parent 0091de4 commit 88c45da

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: ts.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
a = "ds"
2+
3+
b= a
4+
5+
print(id(a)==id(b))
6+
7+
b = 'sd'
8+
9+
print(id(a)==id(b))

0 commit comments

Comments
 (0)