8 lines
123 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# dict object with special methods
d = {}
d.__setitem__('2', 'two')
print(d.__getitem__('2'))
d.__delitem__('2')
print(d)