Answer:
The answer to this question is given below in the explanation section.
Explanation:
This is a Python function that generates random number between the given range. However, it includes the numbers that are given in the range.
So this function can generate a random number and return a number between 1 and 9 (inclusive 1 and 9).
The function is written below
...........................................................................................................
import random
print(random.randint(1, 9))
<em>#returns a number between 1 and 9 (both included)</em>
.....................................................................................................................