源代码. import matplotlib.pyplot as plt x = [1, 2, 3, 4] y = [1, 2, 20, 50] # 创建一个画布 plt.figure() # 创建一条线 plt.plot(x, y) # 展现 ...
確定! 回上一頁