How to call a function from a function in a class that is called using a button with a lamda in Python3x?
I have a class: MyClassName for example, with two functions: one to calculate a number and one to validate if a group of comboboxes (tkinter) all have selections. I’m also using tkinter for a button to call the calculate function using a lambda because I want the user to make the combobox selections and then press the calculate button, hence the need for a lambda.