Header Ads

Draw PIE Chart Using Python Code

Draw PIE Chart Using Python Code
import matplotlib.pyplot as p
s = [40, 30, 10, 10, 10]
l = ["Python", "Java", "C++" "Javascript"]
p.pie(s, labels = 1)
p.show()

No comments:

Powered by Blogger.