Instruction
Let's start with Question 1.
Exercise
You are given a list with responses to the following question:
What is your favorite animal?
Your task is to create a function named analyze_responses(list). The function should return a tuple with the following three elements, in this order:
- The number of responses in the list.
- The number of unique responses.
- A set containing all unique responses.



