“Random de List 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

Imprimer la chaîne aléatoire de la liste Python

import random

list = ["Item 1", "Item 2", "Item 3"]			# List
item = random.choice(list)						# Chooses from list
print(item)					# Prints choice

# From stackoverflow
# Tried and tested method
Fair Finch

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

Comment imprimer une partie aléatoire d'une liste dans Python

import random

foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Careful Caracal

Python Choisissez un échantillon aléatoire dans la liste

import random
sequence = [i for i in range(20)]
subset = random.sample(sequence, 5) #5 is the lenth of the sample
print(subset) # prints 5 random numbers from sequence (without replacement)
Kodi4444

Random de List Python

random.choice(seq)¶
Return a random element from the non-empty sequence seq.
Colorful Copperhead

Réponses similaires à “Random de List Python”

Questions similaires à “Random de List Python”

Plus de réponses similaires à “Random de List Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code