Answer:
def print_range(low, high):
for i in range(low,high):
print(i)
Explanation:
Create the function to accept two parameters (low and high)
Use a for loop to iterate from low to high using the range function
Print the value at each iteration
See a complete program and output below.
def print_range(low, high):
for i in range(low,high):
print(i)
low = 1
high =10
print_range(low, (high+1))