1. 首页
  2. 数据库
  3. 其它
  4. [ Python ] 常用类库学习之 matplotlib

[ Python ] 常用类库学习之 matplotlib

上传者: 2020-12-23 07:00:04上传 PDF文件 291.33KB 热度 27次
matplotlib 作用:生成出版质量级别的图形 中文文档:https://www.matplotlib.org.cn/ 官方文档:https://matplotlib.org/users/index.html 生成饼状图 import matplotlib.pyplot as plt # data to plot labels = ('Python', 'C++', 'Ruby', 'Java',) sizes = (215, 130, 245, 210,) colors = ('gold', 'yellowgreen', 'lightcoral', 'lightskyblue',) p
用户评论