当前分类:300例题>>正文

Python示例:寻找数组中最小数字

来源:互联网   更新时间:2023年6月26日  

Python 示例

写一个 Python示例来寻找数组中的最小数。numpy min 函数返回数组中的最小值。我们使用这个 numpy min 函数返回数字和字符串数组中的最小项。

import numpy as np
smtarr = np.array([14, 27, 99, 10, 50, 65, 18, 4, 195, 100])
print("Numeric Numpy Array Items = ", smtarr)
print("The Smallest Number in this Numpy Array = ", min(smtarr))

strsmtarr = np.array(['UK','USA','India', 'Japan'])
print("String Numpy Array Items = ", strsmtarr)
print("The Smallest Number in this Numpy Array = ", min(strsmtarr))

寻找数组中最小数字的 Python示例

我们使用 numpy 排序函数对数组进行升序排序,并打印第一个索引位置号,即最小。

import numpy as np
smtarr = np.array([99, 14, 150, 11, 184, 5, 190])
print("Numeric Numpy Array Items = ", smtarr)

print(type(smtarr))
smtarr.sort()
print("The Smallest Number in this Numpy Array = ", smtarr[0])

最小数值数组项目输出

Numeric Numpy Array Items =  [ 99  14 150  11 184   5 190]
<class 'numpy.ndarray'>
The Smallest Number in this Numpy Array =  5

在这个 Python 示例中,我们将第一个值指定为最小,for 循环范围从 1 开始,遍历到 smtarr 长度减 1。if 条件(if(minist > smtar[I])检查当前 numpy 数组元素是否大于 minist。如果为真,则将该值(最小= smtarr[I])赋给最小变量,将(位置= i)索引值赋给位置变量。

import numpy as np
smtarr = np.array([14, 27, 99, 10, 50, 65, 18, 4, 195, 100])
print("Numeric Numpy Array Items = ", smtarr)

smallest = smtarr[0]
for i in range(1, len(smtarr)-1) :
    if(smallest > smtarr[i]) :
        smallest = smtarr[i]
        position = i

print("The Smallest Number in this Numpy Array   = ", smallest)
print("The Index Position of the Smallest Number = ", position)

蟒阵最小物品输出

Numeric Numpy Array Items =  [ 14  27  99  10  50  65  18   4 195 100]
The Smallest Number in this Numpy Array   =  4
The Index Position of the Smallest Number =  7
本文固定链接:https://6yhj.com/leku-p-4476.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: python基础