I have a little pandas dataframe that looks like this:
Word Percentage1 Percentage2 1 drink 18.166654 29.014272 2 cherry 13.498262 12.802642 3
If I understand you correctly, you can do in this way:
df.plot(x="Word", y=["Percentage1", "Percentage2"], kind="bar")