Número inteiro aleatório do Python entre min, max

import random
print(random.randint(0,9))
Frightened Ferret