Answers for "random.sample"

4

sample 1 item from array python

import random
cakes = ['lemon', 'strawberry', 'chocolate']
random.choice(cakes)
# prints 1 randomly selected item from the collection of n items with 
# the probability of selection as 1/n
Posted by: Guest on September-29-2020
0

random.sample

# returns randomized k values from a list, tuple, set
# import random
import random
# return 10 random values from list my_list
random_values = random.sample(my_list, 10)
Posted by: Guest on July-08-2021
-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

Python Answers by Framework

Browse Popular Code Answers by Language