lv_micropython/tests/basics/builtin_id.py

3 lines
50 B
Python
Raw Normal View History

print(id(1) == id(2))
print(id(None) == id(None))