Learn to code with step-by-step lessons. A place for students to work through programming fundamentals and build skills.
One possible program:
balance = float(input("Balance owed ($): "))
payment = float(input("Monthly payment ($): "))
months = 0
while balance > 0:
balance -= payment
months += 1
print("Paid off in", months, "months.")