“Aleatorio de List Python” Código de respuesta

Python Elija un elemento aleatorio de la lista

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

Imprimir cadena aleatoria de la lista de 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

Cómo obtener un elemento aleatorio de una matriz en 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

Cómo imprimir una parte aleatoria de una lista en Python

import random

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

Python Elija una muestra aleatoria de la lista

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

Aleatorio de List Python

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

Respuestas similares a “Aleatorio de List Python”

Preguntas similares a “Aleatorio de List Python”

Más respuestas relacionadas con “Aleatorio de List Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código