random pick between given things python

Solutions on MaxInterview for random pick between given things python by the best coders in the world

showing results for - "random pick between given things python"
Loretta
21 Sep 2020
1import random
2
3numberList = [111,222,333,444,555]
4print("random item from list is: ", random.choice(numberList))
5