how random is python random 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)