In Python please:
The function below takes two integer parameters: low and high. Complete the function so that it prints the numbers from low to high in order, including both low and high, each on a separate line.
The recommended approach for this question is to use a for loop over a range statement.
student.py
1 def print_range(low, high):
2 # Implement your function here. Be sure to indent your code block!

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).

fichoh

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

Ver imagen fichoh