Guest User

Untitled

a guest
Jul 16th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. sizes = [25, 20, 45, 10]
  2. labels = ["Cats", "Dogs", "Tigers", "Goats"]
  3.  
  4. plt.pie(sizes, labels = labels)
  5. plt.axes().set_aspect("equal")
  6. plt.show()
Add Comment
Please, Sign In to add comment