Question: Please show all code. Thank you! 2; Spring 2023.py # Problem one Write a Python function, myNum(), which will prompt the user to enter
2; Spring 2023.py \# Problem one "" Write a Python function, myNum(), which will prompt the user to enter two intege numbers. You can assume the first number entered by the user is always less than or equal the second number entered by the user. The function myNum will print all integer numbers fre the first integer number to the second integer number inclusive. Hint: a good way to do this program is with the range function and a for loop. Sample output: my Num () Enter first integer number: 3 Enter second integer number: 7 3 4 4 6 6 7 myNum() Enter first integer number: 3 Enter second integer number: 4 3 2 1 0 1 2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
