「Python」sorted()でゼロ埋めされる数字の文字列をソートするサンプル

説明
リスト名.sorted()
使用例

lstA = ['11', '01', '05', '15']
lstB = ['210', '012', '054', '153']

print("リストAのソート結果:")
print(sorted(lstA))

print("リストBのソート結果:")
print(sorted(lstB))

実行結果
リストAのソート結果:
[’01’, ’05’, ’11’, ’15’]
リストBのソート結果:
['012’, '054’, '153’, '210’]

Python

Posted by arkgame