Respuesta :
Answer:
def print_range(low, high):
for number in range(low, high+1):
print(number)
Explanation:
- Define a function called print_range that takes two parameters: low and high
- Inside the function, initialize a for loop that iterates from low to high. Inside the for loop, print the number (The numbers from low to high will be printed on a separate line).
The program is a function which accepts two parmaters and prints an ordered value within the range of integer parmaters supplied. The program written in python 3 goes thus :
def print_range(low, high):
#initialize a function named print_range whigh accepts two integer ’parameters
for number in range(low, high+1):
#for loop iterates through the parmaters Given, 1 is added to the second parameter so that the highest value can be printed as well
print(number)
#print each iterated value on a new line
print_range(2, 10)
#sample run of the program is attached.
Learn more : https://brainly.com/question/25379281
