""" In a dictionary, the first value of an element is the *key* and
the other one is the *value* """
new_dict = {
'name': 'Alex',
'age': 21
}
""" You can also use different data type for key in the same dictionary """
new_dict = {
'name': 'Alex',
1: 21,
2: False
}