(self)
| 26 | self.cal_buttons() # <---------- Buttons On Calculator |
| 27 | |
| 28 | def output_box(self): |
| 29 | show = ttk.Entry( |
| 30 | self.cal_frame, |
| 31 | textvariable=self.out_var, |
| 32 | width=25, |
| 33 | font=("calibri", 16), |
| 34 | state="readonly", |
| 35 | ) |
| 36 | show.grid(row=0, column=0, sticky=tk.W, ipady=6, ipadx=1, columnspan=4) |
| 37 | show.focus() |
| 38 | |
| 39 | # ========== * Button Events * ========== < --- Sequence 789456123 |
| 40 | def press_7(self): |