python select random number from range 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: how to create a random number between 1 and 10 in python

smallest = 0
largest = 100

random_number = random.randint(smallest, largest - 1)

Example 3: random int in python 3

from random import randint 
 
print(randint(1, 10))

# prints a random integer from 1 to 10

Example 4: 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)

Example 5: generate random whole numbers within a range

var myMin = 1;
var myMax = 10;
function randomRange(myMin, myMax) {
  return Math.floor(Math.random() * (myMax - myMin + 1)) + myMin;
}

console.log(randomRange(myMin, myMax));