random between two numbers python code example

Example 1: How to get random int between two numbers python

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

  this will output somthing between 10 and 100

Example 2: random between two floats python

>>> random.uniform(1.5, 1.9)
1.8733202628557872

Example 3: randomly choose between two numbers python

import random
 random.choice([-40, 40])

Example 4: random range python

from random import randrange
print(randrange(10))

Example 5: three different randomn numbers python

>>> option1, option2, option3 = random.sample(range(1, 4), 3)
>>> option1, option2, option3
(3, 1, 2)