DEBSOURCES
Skip Quicknav
sources / micropython / 1.26.1%2Bds-1 / tests / stress / dict_create.py
12345678
# create a large dictionary d = {} x = 1 while x < 1000: d[x] = x x += 1 print(d[500])