0
How to add 2 functions on single button using Python...help me please.
tkinter
7 Réponses
+ 2
nest the function call. make one function call the next.
edit~
https://code.sololearn.com/c4LNQJY3WmWL/?ref=app
+ 1
lambda x, y: (func1(x), func2(y))
It creates a function, that calls 2 functions and returns their values as a tuple of 2 items.
+ 1
I'd recommend to get familiar with module "functools" when working with tkinter.
+ 1
If you understand lambdas and not how to call multiple functions at once.../palm
+ 1
James tkinter is sometimes very annoying when working with functions.
0
will call the button by the nest function?
0
thanks