#short
#python
#list
#random
How do I retrieve an item at random from the following list?
foo = ['a', 'b', 'c', 'd', 'e']
random.choice(): https://docs.python.org/library/rando...
cryptographically secure: https://en.wikipedia.org/wiki/Cryptog...
secrets.choice(): https://docs.python.org/library/secre...
random.SystemRandom: https://docs.python.org/library/rando...