Question: use python IDLE when providing your solution and answer everything above 3. Compose a function display_forwards that accepts a single positive integer (X) as an
use python IDLE when providing your solution and answer everything above
3. Compose a function display_forwards that accepts a single positive integer (X) as an argument, and prints all integers on the interval [1,x) in ascending 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_forwards (10) \# output (via print): #1 #2 #3 #4 \# 5 #6 \# 7 \# 8 \# 9 display_forwards (5) \# (no text should be displayed)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
