Answer:
Step-by-step explanation:
The following code is written in Python. It creates a function called count_types which takes in three parameters. The pokemon in question, the data set, and a dictionary with all the pokemon types and values (Empty to start). Then it simply uses the built-in Python count feature to count the number of times that the Pokemon appears in the data set. Finally it saves that pokemon as a key and count as a value to the dictionary.
def count_types(pokemon, data, my_dict):
count = data.count(pokemon)
my_dict += {pokemon: count}