Fix Python – Understanding lambda in python and using it to pass multiple arguments
After reading everything I can find on lambda, I still don’t understand how to make it do what I want.
Everyone uses the example:
lambda x, y : x + y
Why do you need to state both x and y before the 😕 Also how do you make it return multiple arguments?
for example:
self.buttonAdd_1 = Button(self, text=’+’, command=lambda : self.calculate(self.bu….