Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Generate A Random Integer In Python

This code will generate a random number

python
from random import randint

random_num = randint(0, 10)
print(random_num)
results start

- Gives numbers between 0 and 10 (inclusive of both 0 and 10)

- It's possilbe to set a specific seed which will always produce the same numbers (which I've found useful for testing)

[] Make and link to a post with random floats