“Как перетасовать массив в Python” Ответ

Как перетасовать массив в Python

sklearn.utils.shuffle(array, random_state, n_samples)
#The sklearn.utils.shuffle() does not change the original input but returns the input’s shuffled copy.
Abdelrahman Osama

случайно перетасовывать массив питона

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]
Obedient Ox

Python Shuffle Array

import random
new_array = random.sample( array, len(array) )
Perfect Platypus

Ответы похожие на “Как перетасовать массив в Python”

Вопросы похожие на “Как перетасовать массив в Python”

Больше похожих ответов на “Как перетасовать массив в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования