Skip to content

Commit 307c103

Browse files
authored
Add files via upload
1 parent 7511fe1 commit 307c103

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)