• Write code to get a random INTEGER between…. o 3 and 9 (exclusive) o 3 and 9 (exclusive) python code example
Example: How to get random int between two numbers python
import random
print(random.randint(10,100))
this will output somthing between 10 and 100