python random item of an array

Solutions on MaxInterview for python random item of an array by the best coders in the world

showing results for - "python random item of an array"
Antonia
12 Jun 2017
1import random
2random.choice (mylist)
3