1
0

python3 updates

This commit is contained in:
ThomasV
2017-08-12 21:26:57 +02:00
parent cea705b153
commit d8e37644d3
2 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ class PRNG:
return seq[self.randint(0, len(seq))]
def shuffle(self, x):
for i in reversed(xrange(1, len(x))):
for i in reversed(range(1, len(x))):
# pick an element in x[:i+1] with which to exchange x[i]
j = self.randint(0, i+1)
x[i], x[j] = x[j], x[i]