Dictionary
Dictionary
1. What is Dictionary?
Ans: In Python, Dictionary is a comma separated key-value pairs within curly
braces. It is unordered, Mutable.Each key in a dictionary is unique and is used to
access the associated value.
For Example:
my_dict={'name':"Pooja",'age':24,'mobile_no.":9988776655,'city':"Pune"}