random.choice to a object python code example
Example 1: how to print a random part of a list in python
import random
foo = ['a', 'b', 'c', 'd', 'e']
print(random.choice(foo))
Example 2: how to randomly choose from a list python
random.choice(name of list)