how to select random elements from list in python code example

Example 1: python list of random values

# To create a list of random integer values:
import random
randomlist = random.sample(range(10, 30), 5)
# Output:
# [16, 19, 13, 18, 15]

# To create a list of random float numbers:
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
# Output:
# [107.50697835, 123.84889979]

Example 2: python choose random element from list

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)

Example 3: how to print a random part of a list in python

import random

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

Example 4: how to randomly choose from a list python

random.choice(name of list)

Example 5: python how to randomly choose an item from a list

import random

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

Example 6: random.choice()

import random
l=[1,2,3,4,5,6,7,8,9,0]
random.choice(l)
print(l);