Sé libre de compartir nuestro espacio y códigos en tus redes sociales, danos de tu ayuda para aumentar nuestra comunidad.
Ejemplo 1: Python elige 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)
Ejemplo 2: cómo elegir aleatoriamente de una lista python
random.choice(name of list)
Ejemplo 3: imprimir al azar string de la lista python
import random
list=["Item 1","Item 2","Item 3"]# List
item = random.choice(list)# Chooses from listprint(item)# Prints choice# From stackoverflow# Tried and tested method
Ejemplo 4: Python elige una muestra aleatoria de la lista
import random
sequence =[i for i inrange(20)]
subset = random.sample(sequence,5)#5 is the lenth of the sampleprint(subset)# prints 5 random numbers from sequence (without replacement)
Ejemplo 5: elija un número aleatorio de una lista en python
import random
numberList =[1,2,3,4,5]print(random.choice(numberList))# Prints a random number from the list
Ejemplo 6: seleccione un valor aleatorio de la lista python
import random
# with replacement = same item CAN be chosen more than once.# without replacement = same item CANNOT be chosen more then once.# Randomly select 2 elements from list without replacement and return a list
random.sample(list_name,2)# Randomly select 3 elements from list with replacement and return a list
random.choices(set_name, k=3)# Returns 1 random element from list
random.choice(list_name)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)