Question: In python coding please add functions/methods at least 3 of them. Please just adjust code I have provided and update it to include functions/methods. You

In python coding please add functions/methods at least 3 of them. Please just adjust code I have provided and update it to include functions/methods. You can rearrange the code, edit or delete parts to add functions/methods. PLEASE DO NOT make a Whole New code. Please use what I have provided. I do not need a whole different code, just edits on what I have provided.

THIS is the original question:Design a modular program that asks the user to enter the monthly costs for the following expenses incurred from operating his or her automobile: loan payment, insurance, gas, oil, tires, and maintenance. The program should then display the total monthly cost of these expenses, the total trimester amount, the total semester amount and the total annual cost of these expenses.

#read all the expenses loanPayment=float(input("Enter Monthly loan Amount ")) insuranceAmount=float(input("Enter Monthly Insurance Amount ")) gasAmount=float(input("Enter Monthly Gas Amount ")) oilAmount=float(input("Enter Monthly Oil Amount ")) tiresAmount=float(input("Enter Monthly tires Amount ")) # add the all the expenses to get the total expenses of one month totalExpenditures=loanPayment+insuranceAmount+gasAmount+oilAmount+tiresAmount # print expenses for one month print("Monthly expenses ",totalExpenditures) #print expenses for 3 months by multiplying monthly expenses by 3 print("Expenses for trimester ",totalExpenditures*3) #print expenses for 6 months by multiplying monthly expenses by 6 print("Expenses for Semester ",totalExpenditures*6) #print expenses for 12 months by multiplying monthly expenses by 12 print("Annual Expenses ",totalExpenditures*12)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!