mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 02:10:52 +02:00
13 lines
188 B
Python
13 lines
188 B
Python
# Types are hashable
|
|
print(hash(type) != 0)
|
|
print(hash(int) != 0)
|
|
print(hash(list) != 0)
|
|
class Foo: pass
|
|
print(hash(Foo) != 0)
|
|
|
|
print(int == int)
|
|
print(int != list)
|
|
|
|
d = {}
|
|
d[int] = float
|