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