random pick between given things python

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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