We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7511fe1 commit 307c103Copy full SHA for 307c103
Python_Begginer_Projects/Amazing/Pie_Chart.py
@@ -0,0 +1,10 @@
1
+import matplotlib.pyplot as plt
2
+
3
+labels = ('Python', 'Java', 'JavaScript', 'C++')
4
+sizes =[45, 19, 16, 20]
5
6
+plt.pie(sizes,
7
+ labels=labels, autopct='%1.f%%',
8
+ counterclock=False, startangle=105)
9
10
+plt.show()
0 commit comments