Question: plz use python only Write a program that asks the user to enter 3 integer numbers. The first number is the start of the sequence,

plz use python only
Write a program that asks the user to enter 3 integer numbers. The first number is the start of the sequence, the second number is the last of the sequence and the third number is the step between numbers in the sequence. The first number is expected to be equal to or larger than the second number. The program should display the sequence of integer numbers from the first to the last in descending order, including both the start and end values and with the right step between numbers. The program should display the numbers with a single space separating each number. Notes - Your code must use a while loop. - It does not matter if your output includes a trailing space (i.e., spaces at the end of a line will be ignored). - When using the print() function, the argument end=" " may be useful -- e.g., print (..., end=" ") - If the first number is smaller than the second number then nothing is printed. - The user will always enter a step greater than 0. For example: Write a program that asks the user to enter 3 integer numbers. The first number is the start of the sequence, the second number is the last of the sequence and the third number is the step between numbers in the sequence. The first number is expected to be equal to or larger than the second number. The program should display the sequence of integer numbers from the first to the last in descending order, including both the start and end values and with the right step between numbers. The program should display the numbers with a single space separating each number. Notes - Your code must use a while loop. - It does not matter if your output includes a trailing space (i.e., spaces at the end of a line will be ignored). - When using the print() function, the argument end=" " may be useful -- e.g., print (..., end=" ") - If the first number is smaller than the second number then nothing is printed. - The user will always enter a step greater than 0. For example
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
