Python 中用pylab模块, pylab.plot() 函数,绘制折线统计图 import pylab as pl x = [, , , ] y = [, , , ] ''' plot参数说明: x: x轴坐标列表 y: y轴坐标列表 marker: 点型 linestyle: 连接线型 markerfacecolor: ''' pl.plot(x, y, marker='o',linestyle='--',markerfacecolor='r') ''' axis参数说明:[x轴最小值,…