Answers for "python random selection from array"

1

pick a random number from a list in python

import random

numberList = [1,2,3,4,5]
print(random.choice(numberList))    # Prints a random number from the list
Posted by: Guest on November-27-2020

Code answers related to "python random selection from array"

Python Answers by Framework

Browse Popular Code Answers by Language