Dictionaries in Python
Hello Guys, In this particular post, I am going to discuss dictionaries in python. The example in this post is tested on Python-3.6. Python data structures include lists, dictionaries, tuples, and sets. If you have worked with python, then you may have worked on "lists", "tuples", "sets" and "dictionary" in python. Dictionary - As the name suggests dictionary is the same as that ordinary dictionary where we will have index and then we'll use that index to search the specific entry. This is similar to book or phonebook index where we search things using names instead of values which we do in other python data structure. Dictionary worked in "key":"value" pair. The "word" is called key and the definition of "word" is called a value . Usually, the "values" or "keys" of a dictionary are not in specific order. Another import thing is that we ca...