python random integer in range\ code example

Example 1: python randint

from random import randint

# generate an integer between 3 and 9 (inclusive range).
# (see randrange for exclusive range)
print(randint(3, 9))

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)