fork download
  1. import matplotlib.pyplot as plt
  2.  
  3. # Данные для круговой диаграммы
  4. labels = ['A', 'B', 'C'] # Метки
  5. sizes = [30, 45, 25] # Значения сегментов
  6. colors = ['#ff9999','#66b3ff','#99ff99'] # Цвета для сегментов
  7. explode = (0.1, 0, 0) # Выделение первого сегмента (опционально)
  8.  
  9. # Построение круговой диаграммы
  10. plt.figure(figsize=(6, 6)) # Размер фигуры
  11. plt.pie(sizes, labels=labels, autopct='%1.1f%%', startangle=90, colors=colors, explode=explode)
  12. plt.title('Круговая диаграмма') # Заголовок
  13. plt.axis('equal') # Убедиться, что круг не искажен
  14. plt.show()
Success #stdin #stdout 0.63s 55540KB
stdin
Standard input is empty
stdout
Standard output is empty