课后习题15.1/15.2彩色立方
import matplotlib.pyplot as plt
x_values = list(range(1,5001))
y_values = [x_value**3 for x_value in x_values]
plt.scatter
课后习题15.1/15.2彩色立方
import matplotlib.pyplot as plt
x_values = list(range(1,5001))
y_values = [x_value**3 for x_value in x_values]
plt.scatter