I'd like to create random list of integers for testing purposes. The distribution of the numbers is not important. The only thing that is count is time. I know generating random numbers is a time-consuming task, but there must be a better way.
Here's my current solution:
import random
import timeit
# random lists from [0-999] intreval
print [random.randint(0,1000) for r in xrange(10)] # v1
print [random.choice([i for i in xrange(1000)]) for r in xrange(10)] # v2
# measurement:
t1 = timeit.Timer('[random.randint(0,1000) for r in xrange(10000)]','import random') # v1
t2 = timeit.Timer('random.sample(range(1000), 10000)','import random') # v2
print t1.timeit(1000)/1000
print t2.timeit(1000)/1000
v2 is faster than v1 but is not working such a large scale. It gives the following error: 'ValueError: sample larger than population '
Do you know a fast, efficient solutinon that works in that scale?
Edit:
Andrew's: 0.000290962934494
gnibbler's: 0.0058455221653
KennyTM's: 0.00219276118279
NumPy came, saw, conquered
Thank you!
random.sample()depletes the population, making the numbers less and less random. Once the entire population is depleted, it's impossible to sample further. – Ignacio Vazquez-Abrams Nov 13 '10 at 10:58