python random in list code example
Example 1: python list of random values
import random
randomlist = random.sample(range(10, 30), 5)
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
Example 2: how to print a random part of a list in python
import random
foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Example 3: how to randomly choose from a list python
random.choice(name of list)
Example 4: select random value from list python
import random
random.sample(list_name, 2)
random.choices(set_name, k=3)
random.choice(list_name)
Example 5: which function to use in random module for a list in python
random.choice
Example 6: python random generator from list
import random
n = random.random()
print(n)