mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
7 lines
108 B
Python
7 lines
108 B
Python
# dict delete test
|
|
data = []
|
|
j = 6
|
|
for i in range(65535):
|
|
j = ((j*5+1) % 65535)
|
|
data.append(str(j))
|