select 3 random element of the list code example
Example 1: print random string from list python
import random
list = ["Item 1", "Item 2", "Item 3"] # List
item = random.choice(list) # Chooses from list
print(item) # Prints choice
# From stackoverflow
# Tried and tested method
Example 2: pick a random number from a list in python
import random
numberList = [1,2,3,4,5]
print(random.choice(numberList)) # Prints a random number from the list