リストの要素数を取得する

len()を使用します。

items = [1, 2, 3, 4, 5]

print(len(items)) # 5

関連項目