print random item from a 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: how to make a python file that prints out a random element from a list
from random import choice
example = [1,23,45,89,20,4,82]
solve = choice(example)
print(solve)