画个饼状图

来源:互联网 发布:配电柜报价软件 编辑:程序博客网 时间:2024/05/17 08:48
from pylab import *n=20Z=np.random.uniform(0,1,n)pie(Z),show()