import matplotlib.pyplot as plt; left = [1, 2, 3] # グラフの横軸(X軸); height = [3, 5, 0] # 値(Y軸); plt.bar(left, height); plt.show().
確定! 回上一頁