9 lines
96 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# create a large dictionary
d = {}
x = 1
while x < 1000:
d[x] = x
x += 1
print(d[500])