import matplotlib.pyplot as plt x_values=list(range(11)) #x轴的数字是0到10这11个整数y_values=[x**2 for x in x_values] #y轴的数字是x轴数字的 ...
確定! 回上一頁