Question: answer should be in For Loops - [ Medium ] - Unit 5 . 3 Complete the following function, print _ decreasing. The function takes

answer should be in For Loops -[Medium]- Unit 5.3
Complete the following function, print_decreasing.
The function takes one input argument, num, which is
an integer. You can assume it will be positive.
The function should print all integer values counting
down from the input value, num, to 1, with each value
in a separate print statement.
For example, if the input value is 4, the function should
print:
4
3
2
1
The function need not return anything.
Language: Python 3
Environment#
# Complete the 'print_decreasing' function below.
#
# The function accepts INTEGER num as parameter.
#
def print_decreasing(num):
# Write your code here
 answer should be in For Loops -[Medium]- Unit 5.3 Complete the

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!