pick random from array pytohn 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: random pick between given things python
import random
numberList = [111,222,333,444,555]
print("random item from list is: ", random.choice(numberList))