I'm in the process of working on programming project that involves some pretty extensive Monte Carlo simulation in Python, and as such the generation of a tremendous number of random numbers. Very nearly all of them, if not all of them, will be able to be generated by Python's built in random module.
I'm something of a coding newbie, and unfamiliar with efficient and inefficient ways to do things. Is it faster to generate say, all the random numbers as a list, and then iterate through that list, or generate a new random number each time a function is called, which will be in a very large loop?
Or some other, undoubtedly more clever method?
/dev/randominto a file, and using thereafter, would be faster and the numbers will be of potentially better quality. Not that Python's random generator is bad or anything. – ktdrv Nov 2 '11 at 23:26random.SystemRandominstead of therandommodule, then that would utilized/dev/urandomon *nix andCryptGenRandomon Windows. Which is more than sufficient. – Bryan Ross Nov 3 '11 at 0:08