Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

from tkinter import * window = Tk() window. title( ' Loan calculator') window . geometry(450x155+100+100) Label (window, anchor = W, text...

  • Attachment 1
  • Attachment 2
from tkinter import *window = Tk()window. title( ' Loan calculator')window . geometry("450x155+100+100")Label (window, anchor = W, text = 'Anual Interest Rate'). grid(row = 0, column = 0)Label (window, justify = LEFT, text = 'Number of Years'). grid(row = 1, column = 0)Label (window, text = 'Loan Amount', anchor = W) . grid(row = 2, column = 0)Label (window, justify = LEFT, text = 'Monthly Payment') . grid(row = 3, column = 0)label5 = Label (window, justify = LEFT, text = 'Ttoal Payment'). grid(row = 4, column = 0)
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question