用Python查找數組中的最小值,並返回它的索引(下標)

#coding=utf-8 ‘’’ 查找數組中的最小值,並返回它的索引 Created on 2019年12月8日 @author: LWJ ‘’’ def findSmallest(arr): smallest = arr[0] #存儲最小的值 smallest_index = 0 #存儲最小元素的索引 for i in range(1,len(arr)): if arr[i] < smalle
相關文章
相關標籤/搜索