python random number between 0 and 100 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: python randomise between 0 or 1
import random
random.random()
round(random.random())
Example 4: random 0 or 1 python
from random import choice
choice([True, False])
Example 5: random python between 0 and 1
import random
random.random()
Example 6: Generate random number from range python
import random
nbr = random.randint(1, 10)
print(nbr)
import numpy as np
uniform_nbrs = np.around(np.random.uniform(size=6), decimals=2)
print(uniform_nbrs)