What will be the resulting graph of the following code?
import matplotlib.pyplot as plt
data = [70.451, 20.333, 9.216]
labels = ['blue', 'orange', 'green']
colors = ['cornflowerblue', 'orange', 'greenyellow']
plt.pie(data,
labels=labels,
colors=colors,
startangle=180,
counterclock=False,
autopct = '%.2f')
plt.show()
A.
C.