How to Get Length of Dictionary Python?
Hello Developer,
In this quick guide, we will teach you how to get length of dictionary python. This post will give you a simple example of how to get size of dictionary python. you will learn how to find the length of a dictionary python. This tutorial will give you a simple example of python length of dictionary.
There is a way to get length of python dictionary. i will give you very simple example to find size of dictionary python . so you can see the following example codes.
So, without further ado, let's see simple examples:
Example:
main.py
myDictionary = { "one": 10, "two": 20, "three": 30, "four": 40, "five": 50, } # Getting Length of Dictionary lengthDic = len(myDictionary) print("Length: ", lengthDic)
Output:
Length: 5
I hope it can help you...