您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
小编给大家分享一下Python中max() 函数的用法,希望大家阅读完这篇文章后大所收获,下面让我们一起去探讨吧!
示例演示:
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'
看完了这篇文章,相信你对Python中max() 函数的用法有了一定的了解,想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。