kopia lustrzana https://github.com/micropython/micropython-lib
9 wiersze
135 B
Python
9 wiersze
135 B
Python
|
from collections import defaultdict
|
||
|
|
||
|
d = defaultdict(lambda:42)
|
||
|
assert d[1] == 42
|
||
|
d[2] = 3
|
||
|
assert d[2] == 3
|
||
|
del d[1]
|
||
|
assert d[1] == 42
|