W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Python3 數(shù)字 | Python 內(nèi)置函數(shù)
?max()
? 方法返回給定參數(shù)的最大值,參數(shù)可以為序列。
以下是? max()
? 方法的語(yǔ)法:
max( x, y, z, .... )
返回給定參數(shù)的最大值。
以下展示了使用 ?max()
? 方法的實(shí)例:
#!/usr/bin/python3
print ("max(80, 100, 1000) : ", max(80, 100, 1000))
print ("max(-20, 100, 400) : ", max(-20, 100, 400))
print ("max(-80, -20, -10) : ", max(-80, -20, -10))
print ("max(0, 100, -400) : ", max(0, 100, -400))
以上實(shí)例運(yùn)行后輸出結(jié)果為:
max(80, 100, 1000) : 1000 max(-20, 100, 400) : 400 max(-80, -20, -10) : -10 max(0, 100, -400) : 100
Python3 數(shù)字 | Python 內(nèi)置函數(shù)
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: