mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
8 lines
123 B
Python
8 lines
123 B
Python
# dict object with special methods
|
|
|
|
d = {}
|
|
d.__setitem__('2', 'two')
|
|
print(d.__getitem__('2'))
|
|
d.__delitem__('2')
|
|
print(d)
|