Skip to content
Advertisement

How to generate a random number with a specific amount of digits?

Let’s say I need a 3-digit number, so it would be something like:

JavaScript

Advertisement

Answer

You can use either of random.randint or random.randrange. So to get a random 3-digit number:

JavaScript

* Assuming you really meant three digits, rather than “up to three digits”.


To use an arbitrary number of digits:

JavaScript

Output:

JavaScript
Advertisement