May 2018
Beginner to intermediate
452 pages
11h 26m
English
Something which is slightly more complex is our handling of Lab, Time, and Technician. Let's review the logic as follows:
def reset(self): """Resets the form entries""" # gather the values to keep for each lab lab = self.inputs['Lab'].get() time = self.inputs['Time'].get() technician = self.inputs['Technician'].get() plot = self.inputs['Plot'].get() plot_values = self.inputs['Plot'].input.cget('values') # clear ...