关于matplotlib简单问题
import matplotlib.pyplot as pltinput_values=
squares =
plt.plot(input_values,squares,linewidth=5)
plt.plot(squares,linewidth=5)
plt.title("Squares Numbers",fontsize=24)
plt.xlabel("Value",fontsize=14)
plt.ylabel("Square of Value",fontsize=14)
plt.tick_params(axis='both',labelsize=14)
plt.show()
为什么这段代码画出的图像是有两条线 而《python编程从入门到实践》书中出现的却只是一条 plt.plot(input_values,squares,linewidth=5)
plt.plot(squares,linewidth=5)
这里不是写了两句么?两条线么正常的。。。。。。。。。
不知道书里怎么样的,要么拍个照片传上来看看
页:
[1]