You will learn about how we create dictionary in python with Keys and values like hashMap in java. Dictionary is a Collection of Keys and values which can store Keys with any data type. We can store Keys with mixed data type in same dictionary object.
Keys Must be different and case-sensitive.
for example :- dict = {1: 'vinay', 2: 'daksh'}
#python
#create dictionary in python
#use of Keys and values in python