Unit 5 Session 1 (Click for link to problem statements)
Understand what the interviewer is asking for by using test cases and questions about the problem.
Plan the solution with appropriate visualizations and pseudocode.
General Idea: Modify the is_caught
attribute of the previously created squirtle
object and then use a method to confirm the update.
1) Set the `is_caught` attribute of `squirtle` to True to indicate that it has been caught.
2) Call the `print_pokemon()` method to print the current state of `squirtle`, verifying the attribute update.
⚠️ Common Mistakes
squirtle.is_caught = True
squirtle.print_pokemon()