write program in python to generaate random numbers from range 100-1000 code example
Example 1: how to tell python to create a random numer
#to choose a random number simply do this
import random
print(random.randint(1, 100))
Example 2: random numbers python
import random
a = (random.randint(bottom value, top value)