choose a random element from a list code example
Example 1: how to randomly choose from a list python
random.choice(name of list)
Example 2: Select an element of a list by random
import random
rand_index = random.randrange(len(list))
random_num = list[rand_index]
random_num = random.choice(list)