摘要: import matplotlib.pyplot as plt x_values = list(range(1,1001))y_values = [x**2 for x in x_values]plt.scatter(x_values, y_values,c=y_values,cmap=plt.cm 阅读全文
posted @ 2019-08-19 01:52 愚公一山 阅读(3113) 评论(0) 推荐(0) 编辑