I am currently writing an app in python that needs to generate large amount of random numbers, FAST. Currently I have a scheme going that uses numpy to generate all of the n
Just a quick example of numpy in action:
numpy
data = numpy.random.rand(1000000)
No need for loop, you can pass in how many numbers you want to generate.