Question: Please show code. Thank you! #Problem Three in Write a Python function, myCount(), which asks the user to enter two numbers; upper limit and count.
\#Problem Three "in" Write a Python function, myCount(), which asks the user to enter two numbers; upper limit and count. You can assume that the variable count is less than the upper limit. The function myCount will print all numbers which are a multiple of count from zero upto and including upper limit if appropriate. Sample output: myCount ( ) Enter the upper limit: 10 Enter the variable count: 3 3 6 9 9 > myCount ( ) Enter the upper limit: 12 Enter the variable count: 4 0 4 8 12 def myCount (): pass \#remove and write your program
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
