基于python的简单建图

二维曲线: ```py from matplotlib import pyplot as plt import matplotlib matplotlib.use('TkAgg') import numpy as np x = np.arange(10) y = x ** 2 plt.plot(