zjmm19 发表于 2020-10-13 10:57:35

关于matplotlib简单问题

import matplotlib.pyplot as plt

input_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编程从入门到实践》书中出现的却只是一条

疾风怪盗 发表于 2020-10-13 11:02:43

plt.plot(input_values,squares,linewidth=5)
plt.plot(squares,linewidth=5)
这里不是写了两句么?两条线么正常的。。。。。。。。。

不知道书里怎么样的,要么拍个照片传上来看看
页: [1]
查看完整版本: 关于matplotlib简单问题