micropython-lib/python-stdlib/collections.defaultdict/test_defaultdict.py

11 wiersze
170 B
Python
Czysty Zwykły widok Historia

from collections import defaultdict
2014-05-22 22:16:30 +00:00
d = defaultdict.defaultdict(lambda:42)
assert d[1] == 42
d[2] = 3
assert d[2] == 3
del d[1]
assert d[1] == 42
assert "foo" not in d