Python 3.1 快速導覽 - 內建函數 max()

內建函數 (function) max() ,回傳參數 (parameter) 中的最大值

函數描述
max(iterable[, args...], *[, key])回傳參數中的最大值


舉例示範如下
print(max(0, 1))
print(max(0, 1, 2))
print(max(0, 1, 2, 3))
print(max(0, 1, 3, 4))
print(max([0, 1, 2, 3, 4, 5]))
print(max([0, 1, 2, 3, 4, 5, 6]))
print(max("01234567"))
print(max("012345678"))

# 《程式語言教學誌》的範例程式
# http://pydoing.blogspot.com/
# 檔名:max.py
# 功能:示範 Python 程式 
# 作者:張凱慶
# 時間:西元 2010 年 12 月


執行結果如下



中英文術語對照
函數function
參數parameter


內建函數




沒有留言: