IT-140Rental Car Script ReflectionSouthern New Hampshire University 09:40:28 GMT -05:00In reflecting on the rental car billing project, I found that the one thing I really needed to work on was attention to detail. As you are working in python coding one missed comma or the wrong parentheses can take hours to find and fix to move forward in the project. In this assignmentthere were several different functions, variables and loops used to ensure that the customer output at the end was accurate.An example is how much the customer would be charged based on their input:budgetCharge = 40.00 dailyCharge = 60.00 weeklyCharge = 190.00Now that we have the charges for the customer something is needed to be able to calculate the rest of the invoice so for that we moved to using the branching method and terminology such as if, Else and Elif statements to ensure that the final invoice is calculated properly by using the branching method incorporating calculations with the customer input to get a subtotal for the customer.if rentalCode == 'B':baseCharge = rentalPeriod * budgetCharge elif rentalCode == 'D':baseCharge = rentalPeriod * dailyCharge elif rentalCode == 'W':baseCharge = rentalPeriod * weeklyCharge amtDue = float(baseCharge) +