Какой самый короткий и оптимальный код для диаграммы make p ie? Я хочу создать диаграмму ap ie, используя python. Я пытался использовать лучшую библиотеку, но большинство из них были длинными. У кого-нибудь есть ярлык?
import matplotlib.pyplot as plt percent = [ x, y, z] colour = [blue, green, red] label = [name1, name2, name3] plt.pie(percent , labels=label ,colors=colour) plt.show() #The sum of the values of x,y,z must be 100 for 100%