原代码为:
import matplotlib.pyplot as plt
squares=[1,4,9,16,25]
plt.plot(squares)
plt.show
结果没有图形,搜索网络,有人认为是没有wx等界面。但是我在cmd里,用pip list查了下,我是有wxpython的。然后又按照介绍,加入了一行代码matplotlib.use('wx')。结果报错:NameError: name 'matplotlib' is not defined。
解决:本来都按照网上的提示,下了anaconda,结果在下载过程中,突然发现,最后一行应该是plt show()。加上()后,果然可以了,自己真的要崩溃了