1. 필요한 라이브러리 들을 import 하세요.import pandas as pd 2. 다음과 같은 dictionary를 생성하세요.raw_data = {"name": ['Bulbasaur', 'Charmander','Squirtle','Caterpie'], "evolution": ['Ivysaur','Charmeleon','Wartortle','Metapod'], "type": ['grass', 'fire', 'water', 'bug'], "hp": [45, 39, 44, 45], "pokedex": ['yes', 'no','yes','no'] }type(raw..