Answers for "how does the python random.shuffle function work"

3

randomly shuffle array python

import random
l = list(range(5))
print(l)
# [0, 1, 2, 3, 4]

lr = random.sample(l, len(l))
print(lr)
# [3, 2, 4, 1, 0]

print(l)
# [0, 1, 2, 3, 4]
Posted by: Guest on June-17-2020

Code answers related to "how does the python random.shuffle function work"

Python Answers by Framework

Browse Popular Code Answers by Language