Computer Science, asked by XxTheQuestionerxX, 1 month ago

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 Anonymous
21

Answer:

{\huge{\blue\longrightarrow{\texttt{\orange A\red N\green S\pink W\blue E\purple R\red}}}}

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 Anonymous
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