导语:
本文主要介绍了关于Python max() 函数怎么用?什么原理?的相关知识,希望可以帮到处于编程学习途中的小伙伴
与
max函数经常和min函数一起出现。对于这两个函数,因为看起来很相似,所以经常会混淆。如何明确这两个功能?一起来看看吧~
示例演示:
Python max() function
max() 该功能用于–
计算在其参数中传递的值。
如果字符串作为参数传递,则在字典上的值。
Find largest integer in array
>>> nums = [1, 8, 2, 23, 7, -4, 18, 23, 42, 37, 2]
>>> max( nums )
42 #Max value in array
Find largest string in array
>>> blogName = ["how","to","do","in","java"]
>>> max( blogName )
'to' #Largest value in array
Find max key or value
有点复杂的结构。
>>> prices = {
'how': 45.23,
'to': 612.78,
'do': 205.55,
'in': 37.20,
'java': 10.75
}
>>> max( prices.values() )
612.78
>>> max( prices.keys() ) #or max( prices ). Default is keys().
'to'
好了,以上就是关于max函数的使用了,如需了解更多python实用知识,点击进入
。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ python类属性的两种分类12/06
- ♥ python seaborn模块如何安装使用?11/28
- ♥ python如何设置错误跳过?09/25
- ♥ 如何在python中输入多个参数09/30
- ♥ Python类型转换、数据类型转换函数09/30
- ♥ python切片是如何被索引的12/07
内容反馈