Comment obtenir un int aléatoire entre deux nombres python

import random
print(random.randint(10,100))

  this will output somthing between 10 and 100
Amused Ape