Python教程-取数组最大值max()最小值min()

前言

使用max()min()方法在可获取元素的集合(例如列表,集合或数组)中查找最大(或最小)值。
 

Python教程

1. Python max()函数

max() 函数用于以下环境:
 

  1. 计算在其参数中传递的最大值。
  2. 如果字符串作为参数传递,则在字典上的最大值

1.1。查找数组中的最大整数

$title(example1.py)
>>> nums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
 
>>> max( nums )
 
42      #数组中最大的数字

1.2。查找数组中的最大字符串

$title(example2.py)
>>> blogName=["welcome","to","LEFT","SO"]
 
>>> max( blogName )
 
'welcome'        #数组中最大的值(字典排序)

1.3。查找最大键或值

有点复杂的结构。

$title(example3.py)
>>> prices = {
   'l': 45.23,
   'f': 612.78,
   't': 205.55,
   'e': 37.20,
   'so': 10.75
}
 
>>> max( prices.values() )
612.78
 
>>> max( prices.keys() )   #or max( prices ). Default is keys().
't'

2. Python min()函数

此功能用于–

  1. 计算在其参数中传递的最小值。
  2. 如果字符串作为参数传递,则在字典上的最小值。

2.1。查找数组中的最小整数

$title(example1.py)
>>> nums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
 
>>> min( nums )
 
-4      #最小值

2.2。查找数组中的最小字符串

$title(example2.py)
>>> blogName=["welcome","to","LEFT","SO"]
 
>>> min( blogName )
 
'LEFT'        #最小值(字典)

2.3。查找最小键或值

有点复杂的结构。

$title(example3.py)
>>> prices = {
   'l': 45.23,
   'f': 612.78,
   't': 205.55,
   'e': 37.20,
   'so': 10.75
}
 
>>> min( prices.values() )
10.75
 
>>> min( prices.keys() )   #or min( prices ). Default is keys().
'e'

 

原创文章,作者:kirin,如若转载,请注明出处:https://blog.ytso.com/243737.html

(0)
上一篇 2022年4月11日
下一篇 2022年4月11日

相关推荐

发表回复

登录后才能评论