python尋找最大最小值並返回位置

a爲list(列表),b爲ndarray(numpy矩陣),分別尋找它們的最大值、最小值,並返回對應位置javascript a = [1, 2, 3, 5, 4, 6, 10, 7] b = np.array([[1, 2, 3, 5], [4, 6, 2, 6]]) print(a.index(min(a))) # 返回第一個最小值的位置 print(a.index(max(a))) #
相關文章
相關標籤/搜索