“Wie man Array in Python mischt” Code-Antworten

Wie man Array in Python mischt

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

zufällig mischen 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]
Obedient Ox

Python Shuffle Array

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

Ähnliche Antworten wie “Wie man Array in Python mischt”

Fragen ähnlich wie “Wie man Array in Python mischt”

Weitere verwandte Antworten zu “Wie man Array in Python mischt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen