i am stuck trying to create a program in python that calculates the coins needed to make change for a specified us monetary amount

I am stuck trying to create a program in PYTHON that calculates the coins needed to make change for a specified US monetary amount.

Here is the code I have so far

# Module 3 Change Calculator
# Program is to take a given dollar amount, and convert it into coins

dollar_amount = 1
##quarters = .25
##dimes = .1
##nickels = .5
##pennies = 01

print(“Enter dollar amount (for example, .56, 7.85): “)

dollar_amount = input

if dollar_amount < 0:
print(“Error, dollar amount must be positive.”)
else:
quarters = dollar_amount // 25
dimes = (dollar_amount % 25) // 10
nickels = dollar_amount % 25 % 10 // 5
pennies = dollar_amount % 5

print(“The number of coins for “, dollar_amount, “dollars are: “
print(“Quarters: + , quarters”)
print(“Dimes:” +, dimes)
print(“Nickels: ” +, nickels)
print(“Pennies: ” +, pennies)

 
Do you need a similar assignment done for you from scratch? We have qualified writers to help you. We assure you an A+ quality paper that is free from plagiarism. Order now for an Amazing Discount!
Use Discount Code "Newclient" for a 15% Discount!

NB: We do not resell papers. Upon ordering, we do an original paper exclusively for you.