高等继续教育 / Python编程
题型描述: 编程题
某段代码的运行结果如图所示,请将横线处缺失的代码补充完整。
____________________________
import numpy as np
x=np.arange(1,6)
y=x**2
plt.plot(x,y,linewidth = 5)
plt.title("square numbers",fontsize= 24)
plt.xlabel("value",fontsize = 12)
plt.ylabel("squares",fontsize = 12)
plt.show()
参考答案:
佳题速递: