好的,所以我在python中构建一个计算器,到目前为止只构建了sum函数。建筑功能不是我所困扰的。我正在构建我的计算器,试图复制Windows 10 UWP Calculator行为。 我的代码有点相同,它一次只需要一个输入,并使用当前输入和前一个答案计算总和。这是我写的代码:
import tkinter as tk
root = tk.Tk()
ans = 0
tocalculate = tk.IntVar()
entry = tk.Entry(root, textvariable=tocalculate)
entry.pack()
def Sum():
global ans
ans+=tocalculate.get()
tocalculate.set(ans)
ansLabel = tk.Label(root, textvariable=tocalculate)
ansLabel.pack()
button_calc = tk.Button(root, text="Calculate", command=Sum)
button_calc.pack()
root.mainloop()
它有一些怪癖,但逻辑有效。现在,我想问的问题是,在Windows 10 UWP计算器中,当您开始计算时,它会保存您的历史记录并在上面的标签中显示(就像我附上的屏幕截图)。我如何使用Python和Tkinter做到这一点? Screenshot of UWP Calculator to show you what I mean
我对这一切都很陌生,所以我们将不胜感激。
答案 0 :(得分:1)
只需添加另一个全局变量 var ,以便以字符串格式存储计算,而不是ansLabel
显示 tocalculate ,将其设置为显示 var < / strong>
import tkinter as tk
root = tk.Tk()
ans = 0
var ='' # <-- this will store the calculations in string format
tocalculate = tk.IntVar()
toshow = tk.IntVar() # <-- This label will display history i.e contents of var
entry = tk.Entry(root, textvariable=tocalculate)
entry.pack()
def Sum():
global ans
global var
v=tocalculate.get()
var = var+"+"+str(v)
ans += v
tocalculate.set(ans)
toshow.set(var)
ansLabel = tk.Label(root, textvariable=toshow)
ansLabel.pack()
button_calc = tk.Button(root, text="Calculate", command=Sum)
button_calc.pack()
root.mainloop()
此外,修改了上面的Sum
函数,它将以字符串格式存储var = previous value of var + new value entered in textbox
,将+
替换为-
,对其他人来说更明智