Answers for "how to find the position of the two highest points in an array python"

0

maximum and index of a list pythopn

>>> m = max(a)
>>> [i for i, j in enumerate(a) if j == m]
[9, 12]
Posted by: Guest on March-09-2020

Code answers related to "how to find the position of the two highest points in an array python"

Python Answers by Framework

Browse Popular Code Answers by Language