Question: Write a program that first asks user to enter a lower limit integer and an upper limit integer, respectively. Then print out all integers
Write a program that first asks user to enter a lower limit integer and an upper limit integer, respectively. Then print out all integers between the user-entered lower limit and upper limit (inclusive) in the decreasing order, using the for loop and range function. Note: print them in one single line as below. Enter the lower limit: 4 Enter the upper limit: 9 987654 [Run your program in Python IDLE to verify if it works correctly as described above]
Step by Step Solution
3.38 Rating (157 Votes )
There are 3 Steps involved in it
lowerlimit intinputEnter the lower limit upperlimit intinputEnter the upper limit Check if l... View full answer
Get step-by-step solutions from verified subject matter experts
