generating random numbers in a range python code example
Example 1: random number pythn
import random
n = random.randint(0,22)
print(n)
# Output: 2
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)