Task 3 - Dictionaries, Lists and data manipulation#

In this part we explore another fundamental data structure in python, called Dictionaries.

3.1: Create a dictionary that has 3 keys: name, age and salary, and enter in the following dummy information.#

Sample output#

{‘name’: ‘Jeff Bezos’, ‘age’: 57, ‘salary’: 6746563247.0}

### Your solution here

3.2: Create a second dictionary, this time with at least 5 different names, ages, and salaries.#

Hint: There should only be three keys, and the values should be a list.

Sample Output#

{‘name’: [‘Jeff Bezos’, ‘Person 2’, ‘Person 3’], ‘age’: [59, 24, 40], ‘salary’: [30000000.0, 200000.0, 900000.0]}

### Your solution here