“Comment obtenir un élément aléatoire d'un tableau de Python” Réponses codées

python choisissez l'élément aléatoire dans la liste

import random

#1.A single element
random.choice(list)

#2.Multiple elements with replacement
random.choices(list, k = 4)

#3.Multiple elements without replacement
random.sample(list, 4)
MitroGr

Comment obtenir un élément aléatoire d'un tableau de Python

import random
names=['Mark', 'Sam', 'Henry']

#Set any array
random_array_item=random.choice(names)

#Declare a variable as a random choice
print(random_array_item)

#Print the random choice
#Or, if you want to arrange them in any order:
for j in range(names):
  print(random.choice(names))
Ugliest Unicorn

Réponses similaires à “Comment obtenir un élément aléatoire d'un tableau de Python”

Questions similaires à “Comment obtenir un élément aléatoire d'un tableau de Python”

Plus de réponses similaires à “Comment obtenir un élément aléatoire d'un tableau de Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code