MCPcopy Create free account
hub / github.com/geekcomputers/Python / output_box

Method output_box

calculator-gui.py:28–37  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

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):

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected