.randrange()

The .randrange() method selects a random number from a defined range of int values.

Syntax

random.randrange(start, stop, step)

Example

Here, .randrange() is used to return a random number between 0 and 99:

import random
print(random.randrange(0, 100))

Codebyte Example

In the example below, .randrange() is used to return a random number that is between 0 and 99 and divisible by 5:

Code
Output
Loading...

All contributors

Looking to contribute?

Learn Python on Codecademy