mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 04:25:34 -04:00
5 lines
55 B
Python
5 lines
55 B
Python
print([1, 2] is [1, 2])
|
|
a = [1, 2]
|
|
b = a
|
|
print(b is a)
|