Question
In the context of this exercise, can we change the colors of a pie chart?
Answer
Yes, you can set specific colors for a pie chart using the colors
parameter.
To set specific colors for a pie chart, you can pass in a list of color values. If there are more wedges than the number of colors, the wedges will cycle through the list of colors.
Example
plt.pie(data, colors=["red", "orange", "yellow", "green"])