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