Popular recipes by Lance Spence http://code.activestate.com/recipes/users/4193647/2016-02-18T19:34:17-08:00ActiveState Code RecipesGenerate a set of random integers (Python)
2016-02-18T19:34:17-08:00Lance Spencehttp://code.activestate.com/recipes/users/4193647/http://code.activestate.com/recipes/580613-generate-a-set-of-random-integers/
<p style="color: grey">
Python
recipe 580613
by <a href="/recipes/users/4193647/">Lance Spence</a>
(<a href="/recipes/tags/numbers/">numbers</a>, <a href="/recipes/tags/random/">random</a>).
</p>
<p>This is just a short and simple script that generates a set of random numbers. You enter how many random numbers you want and the program will generate them.</p>
<p>The num is multiplied by 10 in the upper limit within the for loop to give you larger generated integers. Adjust it as needed.</p>