我正在嘗試用 Python 創(chuàng)建一個計算器應(yīng)用程序。我正在使用 Jupyter 筆記本,這是我遇到的錯誤:AttributeError: 'Calc' object has no attribute 'clear_Entry'這是導(dǎo)致此錯誤的代碼:btnClear = Button(
innerFrame,
text='C',
width=6,
height=2,
font=('arial',18,'bold'),
bd=7,
bg='gainsboro',
command=added_value.clear_Entry)這是clear_Entry我定義的方法: def clear_Entry(self):
self.result=False
self.current='0'
self.input_value= True
self.display(0)
添加回答
舉報
0/150
提交
取消