Question: 1. Compose a function display_backwards that accepts a single positive integer (x) as an argument, and prints all integers on the interval [1, x)

1. Compose a function display_backwards that accepts a single positive integer (x)

1. Compose a function display_backwards that accepts a single positive integer (x) as an argument, and prints all integers on the interval [1, x) in descending order, each on its own line. If the argument is not a positive integer, the function should print nothing (not even a blank line). For example, display_backwards (10) # output (via print): # 9 # 8 # 7 # 6 # 5 # 4 # 3 # 2 # 1 display_backwards (-5) # (no text should be displayed)

Step by Step Solution

3.52 Rating (159 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

Heres the implementation of the function displaybackwards in Pytho... View full answer

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 Programming Questions!