Random Number between two number

Hi i search how to generate a random number between for exemple 6 and 10. Thanks

This forum is for discussing the jsonapi specification. Recommend asking your question at stackoverflow.

import random
random.randint(6,10)
1 Like