We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
**⚠️ Common Mistakes** - ## I-mplement ```python def find_pokemon(my_pokemon, pokemon_type): have_type = [] for pokemon in my_pokemon: if pokemon_type in pokemon.types: have_type.append(pokemon) return have_type ## Testing example: have_type = find_pokemon(my_pokemon, pokemon_type) for pokemon in have_type: print(pokemon.name)