random.sample(range(1 100) 3) code example

Example 1: random number python

# generate random integer values
from random import randint

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

Example 2: 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 3: random range python

from random import randrange
print(randrange(10))

Example 4: generate random number python

import random
lower_limit = 0 # Can be anything
upper_limit = 100 # Again, can be anything
# Print it out
print(f"Here is a random number: {random.randint(lower_limit, upper_limit)}