I have a list of list of list in Python data. All values are corresponding to each species in the data. I wanna extract values of specific species. Each corresponding value is in each list.

Suppose I have three species Cu, Ag, Au and Pt. At three different temperatures their frequencies are given as:

Frequency = [[{1}, {2}, {3}, {4}], [{1},{22}, {44}, {54}], [{23}, {43}, {52}]

Remember the third value of each list is for "Au" which are 3,44,43. so, I need answer like [3,44,43].

More Kamal Asghar's questions See All
Similar questions and discussions