Answers for "generate random values from a list python"

13

python list of random values

# To create a list of random integer values:
import random
randomlist = random.sample(range(10, 30), 5)
# Output:
# [16, 19, 13, 18, 15]

# To create a list of random float numbers:
import numpy
random_float_array = numpy.random.uniform(75.5, 125.5, 2)
# Output:
# [107.50697835, 123.84889979]
Posted by: Guest on March-02-2020
-1

python choose random sample from list

import random
sequence = [i for i in range(20)]
subset = sample(sequence, 5) #5 is the lenth of the sample
print(subset) # prints 5 random numbers from sequence (without replacement)
Posted by: Guest on May-25-2020

Code answers related to "generate random values from a list python"

Python Answers by Framework

Browse Popular Code Answers by Language