创建一个简单的图 import matplotlib.pyplot as plt import numpy as np x=np.linspace(-1,1,100) y=x**2 plt.plot(x,y) 相关文章: 2021-09-22