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.


1 def print_range(low, high):

2 # Implement your function here. Be sure to indent your code block!