how to make a random number in pytyho code example
Example 1: python random number
from random import randint
print(randint(1,5))
##Possible Outputs##
#1
#2
#3
#4
#5
Example 2: random numbers python
import random
a = (random.randint(bottom value, top value)