import matplotlib.pyplot as plt. sales = [ 100 , 80 , 50 ]. x_labels = [ 'A' , 'B' , 'C' ]. plt.barh(x_labels,sales). plt.show() ...
確定! 回上一頁