Sampling without replacement : Random « Development « Python






Sampling without replacement

Sampling without replacement
 
import random
print random.sample(xrange(100), 10)   # sampling without replacement

           
         
  








Related examples in the same category

1.Demonstrates random number generation
2.Random integers produced by randrange.Random integers produced by randrange.
3.random number generationrandom number generation
4.Random Choice Random Choice
5.Random int value
6.Random floatRandom float
7.Random string value
8.Demonstrates the range() functionDemonstrates the range() function
9.Random integer chosen from range(6)Random integer chosen from range(6)