Answers for "numpy shuffle array"

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
0

shuffle array python

import random
random.shuffle(array)
Posted by: Guest on August-30-2021
0

Python shuffle array

import random
new_array = random.sample( array, len(array) )
Posted by: Guest on July-21-2021
0

np shuffle

arr = np.arange(10)
>>> np.random.shuffle(arr)
>>> arr
[1 7 5 2 9 4 3 6 0 8] # random
Posted by: Guest on November-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language