项目实践

Python项目_数据可视化

mpl_squares.py import matplotlib.pyplot as plt input_value = [1, 2, 3, 4, 5] squares = [1, 4, 9, 16, 25] # 尝试根据这些数字绘制出有意义的图形 # lineheight决定了plot()绘制的线条粗细 plt.plot(input_...