circuitpython/tests/basics/builtin_id.py

3 lines
50 B
Python

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