Solve Problems by Coding Solutions - A Complete solution for python programming
import matplotlib.pyplot as plt
x=[30,30,20,20]
labeks=["Python","Java","C","C++"]
plt.pie(x,labels=labeks)
plt.show()
Post a Comment
No comments:
Post a Comment