最大値を取得する

max()を使用します。

items = [5, 10, 3, -20, 9]

val = max(items)
print(val) # 10

可変長の引数も使えます。

val = max(5, 10, 3, -20, 9)
print(val) # 10

関連項目