9 lines
172 B
Python
9 lines
172 B
Python
|
for i in range(100):
|
||
|
d = dict()
|
||
|
for j in range(100):
|
||
|
d[j] = j
|
||
|
del d[i]
|
||
|
for j in range(100):
|
||
|
if j not in d:
|
||
|
print(j, 'not in d')
|