Files
micropython/tests/basics/dict_fromkeys.py
Paul Sokolovsky 83623b2fde tests/basic/[a-f]*: Make skippable.
For small ports which don't have all features enabled.
2017-02-15 00:57:56 +03:00

15 lines
273 B
Python

d = dict.fromkeys([1, 2, 3, 4])
l = list(d.keys())
l.sort()
print(l)
d = dict.fromkeys([1, 2, 3, 4], 42)
l = list(d.values())
l.sort()
print(l)
# argument to fromkeys has no __len__
#d = dict.fromkeys(reversed(range(1)))
d = dict.fromkeys((x for x in range(1)))
print(d)