您好,登錄后才能下訂單哦!
小編給大家分享一下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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。