import matplotlib.pyplot as plt x = [1,2,3,4,5] e = [0,0,0,0,0.1] plt.pie(x, radius=1.5, labels=x, explode=e, startangle=60, textprops={'weight':'bold' ...
確定! 回上一頁