Answer:
import random
def return_random_int(lower_bound, upper_bound):
return random.randrange(lower_bound, upper_bound)
print(return_random_int(3, 8))
Step-by-step explanation:
Import the random module
Create a function called return_random_int takes two parameters, lower_bound and upper_bound
Return a number between lower_bound and upper_bound using random.range()
Call the function with given inputs, and print the result