max() 最大値 組み込み関数 2022.03.23 2022.03.15 使い方 int = max(iterable) maxに渡した最大の数値を返します list1=[1,2,3] print(max(list1)) #結果 3