micropython/tests/basics/builtin_id.py

11 wiersze
226 B
Python
Czysty Zwykły widok Historia

print(id(1) == id(2))
print(id(None) == id(None))
# This can't be true per Python semantics, just CPython implementation detail
#print(id([]) == id([]))
2014-02-02 13:38:21 +00:00
l = [1, 2]
print(id(l) == id(l))
f = lambda:None
print(id(f) == id(f))