Question: Raptor flowchart in python for: price = input(Enter the purchase price: ) month = 1 StaringBalance = float(price) payment = float(price) * .05 print('Month Starting

Raptor flowchart in python for:

price = input("Enter the purchase price: ")

month = 1

StaringBalance = float(price)

payment = float(price) * .05

print('Month Starting Balance Interest to Pay Principal to Pay Payment Ending Balance')

while StaringBalance >= payment:

interest = StaringBalance * .01

Principal = payment-interest

EndingBalance = StaringBalance-payment

print('{:<10}'.format("{:2.0f}".format(month)),

'{:<20}'.format("{:6.2f}".format(StaringBalance)),

'{:<20}'.format("{:6.2f}".format(round(interest,2))),

'{:<10}'.format("{:6.2f}".format(Principal)),

'{:<13}'.format("{:6.2f}".format(payment)),

format("{:6.2f}".format(EndingBalance)))

month += 1

StaringBalance = EndingBalance

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!