我想制作一个 Button,它以紧凑的形式分配一个具有值的新变量。
我试过这个:
def whichButton(self, _var, _pressedButton):
self._var = _pressedButton
def checkScooter(self):
self.checkScooter = Button(window, text="Standard", command=lambda: self.whichButton(edition, 1))
self.checkScooter(row=1, column=0)
def checkAbonnement(self):
self.checkAbonnement = Button(window, text="Gold", command=lambda: self.whichButton(abonnement, 3))
self.checkAbonnement(row=1, column=0)
它只是给了我一个错误,没有定义“版本”,但我希望按钮来定义它
有小费吗?