is there a way I could name the widget based on the argument from the function.
def display_widget(self, widget_name, value):
self.sv_[widget_name] = StringVar()
self.label_[widget_name] = Label(textvariable=self.sv_widget_name)
self.sv_[widget_name].set(value)