在 Python3.3(bash,通过 macports 安装)中,我不明白本文末尾的代码错误。我做错了什么?我知道这是一个基本问题——我以为我已经明白了……
>>> import matplotlib
[removed - should not disturb (s. comments)]
>>> import matplotlib as plt # (*)
>>> plt.pyplot.plot([1,2,3])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'pyplot'
>>>
>>> import matplotlib.pyplot as plt
>>> plt.plot([1,2,3])
[<matplotlib.lines.Line2D object at 0x10370d210>]
>>> plt.show()