python random integer in range code example

Example 1: random number python

# generate random integer values
from random import randint

value = randint(0, 10)
print(value)

Example 2: python how to generate random number in a range

import random

# generates completely random number
x = random.random()

# generates a random int
x = random.randint()

# generates a random int in a range
x = random.randint(1, 100)

# NOTE: RANGE DOESN'T WORK FOR random.random()

Example 3: how to use random in python

import random
print(random.randint(3, 7)) #Prints a random number between 3 and 7
array = [cars, bananas, jet]
print(random.choice(array)) #Prints one of the values in the array at random

Example 4: 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 5: random between two floats python

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

Example 6: python random integer in range

import random
print(random.randint(0,9))

Tags:

Cpp Example