辞書の要素数を取得する

len()を使用します。

items = {"one": 1, "two": 2, "three": 3}

print(len(items)) # 3

関連項目