昨日のプロコン解説を見て初めて知ったので、メモ
文字列にmin/max
関数を使うと辞書順最小/最大の文字列を返す
サンプル
print(min("a","b"))
print(max("a","b"))
実行結果
a
b
リストについても同様に辞書順最小/最大の文字列を返す
サンプル
print(min(["a","b","c"]))
print(max(["a","b","c"]))
実行結果
a
c
文字列と数値を引数にするとエラーが発生する
サンプル
print(min("2",1))
エラー文
TypeError: '<' not supported between instances of 'int' and 'str'