I have a dictionary where the values are tuples. The structure is something like this:
my_dictionary = {'class1': (5, 10, 15, 20), 'class2': (1, 2, 3, 4), 'class3': (10, 20, 30, 40)}
Now I want to loop over the dictionary keys and take a specific element from the tuple of values, so say I want to get the first tuple element of each class. How to do that?
