min(),max()
リストの最大値・最小値となる要素を取得するには組み込み関数
max()
,
min()
を使う。
code:python
l =
3, 6, 7, -1, 23, -10, 18
print(max(l))
# 23
print(min(l))
# -10