Pandas Conditional formatting by comparing the column values of dataframe – Nginx
import io import pandas as pd csv_data = '''App_name,pre-prod,prod,stage matching-image,nginx,nginx,nginx mismatching-image,nginx,nginx,nginx:1.23.3-alpine''' df = pd.read_csv(io.StringIO(csv_data), sep=",") html_table = df.tohtml() Is there a way to compare the values of columns in dataframe and use it in conditional formatting ? I want compare…