create python function to choose random number code example
Example 1: random number python
# generate random integer values
from random import randint
value = randint(0, 10)
print(value)
Example 2: how to tell python to create a random numer
#to choose a random number simply do this
import random
print(random.randint(1, 100))