Question: plz use python only Write a program that asks the user to enter 2 integer numbers. The first number is expected to be smaller than
plz use python only
Write a program that asks the user to enter 2 integer numbers. The first number is expected to be smaller than or equal to the second number. The program should display the sequence of integer numbers in ascending order from the first to the last and including both the start and end values. 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 larger than the second number then nothing is printed. For example
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
