It is basically a data type in python. Dictionary is created by using {}.
The different types of dictionary are as follows:-
Empty dictionary
Eg:- myDict= {}
Integer dictionary
Eg:- myDict= {1:’Apple’, 2:’Ball’, 3:’Cat’}
Mixed dictionary
Eg:- myDict={‘name’:’Rahul’,1:[2,3,4]}
Sequence having each item as a pair
Eg:- myDict={[(1,’Apple’),(2,’Ball’)]}