Skip to content

Commit 45e3f13

Browse files
authored
Create program.py
1 parent a6c8611 commit 45e3f13

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import matplotlib.pyplot as plt
2+
import numpy as np
3+
4+
y = np.array([35, 25, 25, 15])
5+
6+
plt.pie(y)
7+
plt.show()

0 commit comments

Comments
 (0)