a = [1, 4, 6, 2, 3, 6]
There are 2 maximum values in the list above (6) and I want to get the index of both elements (one is 2 and one is 5) How can I do that?
a = [1, 4, 6, 2, 3, 6]
There are 2 maximum values in the list above (6) and I want to get the index of both elements (one is 2 and one is 5) How can I do that?