random phyton code example
Example 1: python random number
from random import randint
print(randint(1,5))
##Possible Outputs##
#1
#2
#3
#4
#5
Example 2: python random number
# Random number game
from random import randint
print(randint(1,11))
~~ prints answers from 1 to 10 ~~