🍰📈Как сделать круговую диаграмму на python.# pip install matplotlibimport matplotlib.pyplot as ps = [40,30,10,10,10]l = ["Python", "Java", "C++", "C", "JavaScript"]p.pie(s, labels = l)p.show()