random number function in python code example

Example 1: random number python

# generate random integer values
from random import randint

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

Example 2: python random number

import random  
#random numbers from 1 to 10
print(random.randint(1,10)) #use of random.randint()

#random word from a list
print(random.choice(["a","b","c","d","e"])) #use of random.choice()

#random shuffle a list
random_list = ["a","b","c","d","e"]
random.shuffle(random_list) #use of random.shuffle()
print(random_list)

Example 3: how to get a random number in python

def randnum(min, max):
    num = random.randint(a, b)
    return num
  randomnumber = randnum(0,10)
  print(randomnumber)
 #output: 5