将退格按钮添加到Python GUI计算器

时间:2013-12-03 10:46:15

标签: python tkinter calculator

我正在使用tkinter在python中创建一个GUI计算器。计算器非常有用,现在我想添加一个退格函数,以便清除显示屏上的最后一个数字。例如321将变为32.我已经尝试定义函数'backspace'和'bind_all'方法但我不太完全确定它们如何工作导致错误消息。如果有人可以告诉我如何解决这个问题并解释它,那将是非常感激的。

非常感谢任何帮助。

from tkinter import *

def quit ():
root.destroy()
# the main class
class Calc():
def __init__(self):
    self.total = 0
    self.current = ""
    self.new_num = True
    self.op_pending = False
    self.op = ""
    self.eq = False

#setting the variable when the number is pressed
def num_press(self, num):
    self.eq = False
    temp = text_box.get()
    temp2 = str(num)
    if self.new_num:
        self.current = temp2
        self.new_num = False

    else:
        if temp2 == '.':
            if temp2 in temp:
                return
        self.current = temp + temp2
    self.display(self.current)



# event=None to use function in command= and in binding
def clearLastDigit(self, event=None):
    current = self.text_box.get()[:-1]
    self.text_box.delete(0, END)
    self.text_box.current(INSERT, text)


def calc_total(self):
    self.eq = True
    self.current = float(self.current)
    if self.op_pending == True:
        self.do_sum()
    else:
        self.total = float(text_box.get())

#setting up the text display area
def display(self, value):
    text_box.delete(0, END)
    text_box.insert(0, value)


#Opperations Button
def do_sum(self):
    if self.op == "add":
        self.total += self.current
    if self.op == "minus":
        self.total -= self.current
    if self.op == "times":
        self.total *= self.current
    if self.op == "divide":
        self.total /= self.current
    self.new_num = True
    self.op_pending = False
    self.display(self.total)

def operation(self, op):
    self.current = float(self.current)
    if self.op_pending:
        self.do_sum()
    elif not self.eq:
        self.total = self.current
    self.new_num = True
    self.op_pending = True
    self.op = op
    self.eq = False

#Clear last entry
def cancel(self):
    self.eq = False
    self.current = "0"
    self.display(0)
    self.new_num = True

#Clear all entries
def all_cancel(self):
    self.cancel()
    self.total = 0

#backspace button
def backspace(self):
    self.cancel()
    self.display(len(self.text_box.get())-1)


#Changing the Sign (+/-)
def sign(self):
    self.eq = False
    self.current = -(float(text_box.get()))
    self.display(self.current)



#Global Varibles that are used within Attributes
sum1 = Calc()
root = Tk()
calc = Frame(root)
calc.grid()

#Creating the window for the calculator
root.title("Calculator")
text_box = Entry(calc, justify=RIGHT)
text_box.grid(row = 0, column = 0, columnspan = 3, pady = 5)
text_box.insert(0, "0")

#buttons 1-9 (Displayed row by row)
numbers = "789456123"
i = 0
bttn = []
for j in range(1,4):
for k in range(3):
    bttn.append(Button(calc, text = numbers[i], width= 5, height = 2, bg="#fe0000"))
    bttn[i].grid(row = j, column = k)
    bttn[i]["command"] = lambda x = numbers[i]: sum1.num_press(x)
    i += 1
#button 0
bttn_0 = Button(calc, text = "0", width= 5, height = 2, bg="#fe0000")
bttn_0["command"] = lambda: sum1.num_press(0)
bttn_0.grid(row = 4, column = 1, pady = 5)

#button / (Divide)
bttn_div = Button(calc, text = chr(247), width= 5, height = 2, bg="#00b0f0" )
bttn_div["command"] = lambda: sum1.operation("divide")
bttn_div.grid(row = 1, column = 3, pady = 5)

#button x (Times)
bttn_mult = Button(calc, text = "x", width= 5, height = 2, bg="#00b0f0")
bttn_mult["command"] = lambda: sum1.operation("times")
bttn_mult.grid(row = 2, column = 3, pady = 5)

#button - (Minus)
minus = Button(calc, text = "-", width= 5, height = 2, bg="#00b0f0")
minus["command"] = lambda: sum1.operation("minus")
minus.grid(row = 4, column = 3, pady = 5)

#button + (Plus)
add = Button(calc, text = "+", width= 5, height = 2, bg="#00b0f0")
add["command"] = lambda: sum1.operation("add")
add.grid(row = 3, column = 3, pady = 5)

#button + or - (Plus/minus)
neg= Button(calc, text = "+/-", width= 5, height = 2, bg="#7030a0")
neg["command"] = sum1.sign
neg.grid(row = 5, column = 0, pady = 5)

#button Clear (Clear)
clear = Button(calc, text = "C", width= 5, height = 2, bg="yellow")
clear["command"] = sum1.cancel
clear.grid(row = 5, column = 1, pady = 5)

#button All Clear ( All Clear)
all_clear = Button(calc, text = "CE", width= 5, height = 2, bg="yellow")
all_clear["command"] = sum1.all_cancel
all_clear.grid(row = 5, column = 2, pady = 5)

#button . (Decimal)
point = Button(calc, text = ".", width= 5, height = 2, bg="#c00000")
point["command"] = lambda: sum1.num_press(".")
point.grid(row = 4, column = 0, pady = 5)

#button = (Equals)
equals = Button(calc, text = "=", width= 5, height = 2, bg="#7030a0")
equals["command"] = sum1.calc_total
equals.grid(row = 4, column = 2, pady = 5)

#button Quit
quit_bttn = Button(calc, text ="Quit", width=5, height = 2, bg="green")
quit_bttn["command"] = quit
quit_bttn.grid(row = 5, column = 3)

#button BackSpace
backspace_bttn = Button(calc, text = "Backspace", width= 15, height = 2, bg="yellow")
backspace_bttn["command"] = sum1.backspace
backspace_bttn.grid(row = 6, column = 0, columnspan = 4)


root.mainloop()

1 个答案:

答案 0 :(得分:0)

显示错误消息 - 可能您的参数数量有问题。 bind_all调用具有两个参数的函数backspace(self, event)command仅使用一个参数调用函数backspace(self)

def clearLastDigit(self, event=None):

之前的代码中查看我的评论
# event=None to use function in command= and in binding

backspacecommand=一起使用

def backspace(self):
    self.cancel()
    self.display(len(self.text_box.get())-1)

backspacebind_all一起使用

def backspace(self, event):
    self.cancel()
    self.display(len(self.text_box.get())-1)

顺便说一下:

len(self.text_box.get())-1为您提供文本长度减1.如果您需要分拣文本(321 - > 32),请使用self.display( self.text_box.get()[:-1] )


请参阅带有退格的计算器以回答How do I backspace and clear the last equation and also a quit button?


编辑:对于command,您只需将backspace(self)更改为此

def backspace(self):
    text = text_box.get()[:-1]
    if text == "":
        text = "0"
    self.current = text
    self.display( text )

在某些特殊情况下,可能需要进行一些其他更改才能获得正确的结果。