1import random
2print(random.randint(3, 7)) #Prints a random number between 3 and 7
3array = [cars, bananas, jet]
4print(random.choice(array)) #Prints one of the values in the array at random
1# imports random
2import random
3# randint generates a random integar between the first parameter and the second
4print(random.randint(1, 100))
5# random generates a random real number in the interval [0, 1)
6print(random.random())