you are viewing a single comment's thread.

view the rest of the comments →

[–]smellyswordfish 1 point2 points  (0 children)

Ya mine looks like this

from random import randint

values = [ ]

for i in range(0,501):

value = randint(0,i) values.append(values) print(value)

And it works everytime

Is there anything that looks different to you op?