SyntaxFix
Write A Post
Hire A Developer
Questions
It's a little simpler than most answers here suggest:
import matplotlib.pyplot as plt D = {u'Label1':26, u'Label2': 17, u'Label3':30} plt.bar(*zip(*D.items())) plt.show()