which of the following are true regarding making random numbers in python? the random() function, like other languages, can be used to generate random numbers. to display a random number between 1 and 13: import random print(random.randrange(1,13)) to generate a random number or numbers, start with: import random python has the option to utilize the random module. to display a random number between 1 and 13: import random print(random.randrange(1,14))