「python」リスト型のsort()メソッドのサンプル

2021年2月28日

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

lstA = [34, 13, 53, 9, 23]

lstA.sort()
print("ソート結果:")
print(lstA)

結果
ソート結果:
[9, 13, 23, 34, 53]

Python

Posted by arkgame