Answers for "random sample from list python"

2

python choose random sample from list

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

python choose sample from list with replacement

import random

random.choices(list, k = 4)
Posted by: Guest on May-25-2020
1

python random generator from list

import random
n = random.random()
print(n)
Posted by: Guest on June-01-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 "random sample from list python"

Python Answers by Framework

Browse Popular Code Answers by Language