Question: efine a function called exact _ change that takes the total change amount in cents and calculates the change using the fewest coins. The coin
efine a function called exactchange that takes the total change amount in cents and calculates the change using the fewest coins. The coin types are pennies, nickels, dimes, and quarters. Then write a main program that reads the total change amount as an integer input, calls exactchange and outputs the change, one coin type per line. Use singular and plural coin names as appropriate, like penny vs pennies. Output no change" if the input is or less.
Ex: If the input is:
or less the output is:
no change
Ex: If the input is:
the output is:
dimes quarter
Your program must define and call the following function. The function exactchange should return a tuple containing numpennies, numnickels, numdimes, and numquarters.
def exactchangeusertotal
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
