Question: write the program in python Assginment 1 is about calculating premium premium = car value + 0.1* car value back to top Rewrite the program
write the program in python
Assginment 1 is about calculating premium
premium = car value + 0.1* car value
back to top Rewrite the program used to calculate insurance premiums in Assignment 1 to use a function. Prompt the user for the vehicle value and driver age in the top level code. Pass the vehicle value and driver age to the function as arguments, and return the correct premium from the function to the calling code. Print out the premium charged from the calling code. Write another function that calculates GST for the premium returned by the first function. Pass the value of the premium to the function, and return the amount of GST charged (10% of premium value). Print the value of the GST from the calling code Make your program loop, prompting the user for whether they would like to calculate another premium. Keep track of the total value of premiums sold, and the total value of tax paid. When the user exits, print out the total value of premiums, and total tax paid. Note: do NOT make your program loop by calling your function recursively. Use a standard loop construct
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
