这段代码给了我一个 SyntaxError。不知道出了什么问题。
import numpy as np
from matplotlib.pyplot as plt
x = np.linspace(0., 10, 0.1)
y = np.sin(x)
plt.plot(x, y);
plt.show();
这是错误消息:
File "<ipython-input-4-b3d93c2fbfde>", line 2
from matplotlib.pyplot as plt
^
SyntaxError: invalid syntax