I'm trying to highlight any row where the cookie flavor is chocolate. How do I do this? I'm trying to use df.style, but not having any luck...
import pandas as pd
Excel_file = "Cookies2.xlsx"
x = pd.read_excel(Excel_file)
sorted_by_Cookie_Boxes_Sold = x.sort_values(['Cookie_Boxes_Sold'],
ascending=False)
df = pd.DataFrame(sorted_by_Cookie_Boxes_Sold)
df.style