这是我第一次用Python写作,请注意缺乏知识。谢谢!
所以在这个脚本中,所有的按钮都应该调用一个名为calc_func的函数,该函数接受变量buttonp(按下按钮)。我想要做的是将数字添加到当前字符串并刷新inputvar,这是文本变量。
我在想的只是将新输入的字符串添加到变量等式中等等。
所以当我按下数字“1”一次时,我会在文本框中输入一个数字“1”,如果我按下数字“1”两次,我会得到数字“11”
先谢谢你们!
#displays back
#I need it to add the number to the equation
#I need to put the number back to the box
def calc_func(buttonp):
#starting of the Equation
#adding the number to the equation
##str(equation)
#solving the equation
##equation= eval(equation)
for i in buttonp:
buttonp = buttonp + i
inputvar.set(buttonp)