Answers for "random int from list in python"

3

n random numbers python

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
Posted by: Guest on October-27-2020
1

python random generator from list

import random
n = random.random()
print(n)
Posted by: Guest on June-01-2020

Python Answers by Framework

Browse Popular Code Answers by Language