組み込み関数 sorted() 使い方 list = sorted( iterable ) iterableを渡すとソートしたlistを返します list1 = list2 = sorted( list1 ) print( list2 ) #結果 ... 組み込み関数