What Is Output Of Following Python C.ode?
import matplotlib.pyplot as pyplot
con=[23.4,17.8,25,34,40]
zones=['East','West','North','South','Central']
plt.axis("equal")
plt.pie(con,labels=zones,explode=[0,0,0.2,0,0],autopct="%1.2f%%")
plt.show()
Answers
Answered by
21
Answer:
After Running Above Python C.ode The Output
produced is Given in The Above Attachment.
Python Version is Python Spyder. this time.
The Answer is an Original answer by Me.
after Interpreting C.odes .
May help future python aspirant. . . . . .
Attachments:
Answered by
0
Answer:
import matplotlib.pyplot as pyplot
con=[23.4,17.8,25,34,40]
zones=['East','West','North','South','Central']
plt.axis("equal")
plt.pie(con,labels=zones,explode=[0,0,0.2,0,0],autopct="%1.2f%%")
plt.show()
Similar questions