from matplotlib.pyplot import bar,show

X = ['rouge' , 'bleu' , 'vert' , 'jaune']
V = [ 5 , 2 , 7 , 3 ]

bar(X, V, color='g')
# 'g' pour 'green'
show()
