maps implementation in python code example
Example 1: use map in python to take input
c = map(int,input().split)
Example 2: hash table in python
# In python they are called dictionarys
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
name = dict["Name"] # Zara