I want to dynamically create a python object and add multiple labels: label1, label2, label3, etc. Based on the items that are present in each labels_list. However, when I print my items at the end of the program they only have a label1 attribute which is actually the LAST label in the list of labels. Why is this? And how can I go about dynamically adding all of these labels as attributes to my dictionary?I want to dynamically create a python object an