Python之图表、二维码生成

一、生成二维图表 1、首先安装numpy和matplotlib库 图1 2、直接上代码啦 #coding:utf-8 importnumpyasnp importmatplotlib.pyplotasplt plt.figure(1)# 创建图表1 plt.figure(2)# 创建图表2 ax1 = plt.subplot(211)# 在图表2中创建子图1 ax2 = plt.subplot(2
相关文章
相关标签/搜索