【Python從入門到實踐】15章習題

15-1&15-2 繪製一個圖形,顯示前5個整數的立方值,再繪製一個圖形,顯示前5000個整數的立方值,給該立方圖指定顏色映射python # 15-2 彩色立方 import matplotlib.pyplot as plt x_values = list(range(0,5001)) y_values = [x ** 3 for x in x_values] plt.scatter(x_v
相關文章
相關標籤/搜索