attributeerror:module ‘numbers’has no attribute integral
原因在于在同一个文件下生成numbers.py文件,执行操作的时候就调用numbers.py文件,而非python工具包里的模块【折腾了好久呢~—~】
import matplotlib.pyplot as plt
input_values = [1,2,3,4,5]
squares = [1,4,9,16,25]
plt.plot(input_values,squares,linewidth=5)
plt.title("Square Numbers",fontsize=24)
plt.xlabel("Value",fontsize=14)
plt.ylabel("Square of value",fontsize=14)
plt.show()
此段数据为书籍《python:从入门到实践》里的程序