python select random index from list 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)

Example 3: sample 1 item from array python

import random
cakes = ['lemon', 'strawberry', 'chocolate']
random.choice(cakes)
# prints 1 randomly selected item from the collection of n items with 
# the probability of selection as 1/n