Perform operations after styling in a dataframe
To fix this issue When you use style, df becomes a Styler object and it's
not anymore a Dataframe object. You are trying to use Dataframe methods on
a Styler object, and that will not work. The styler object contains the
dataframe inside df.data, so
Date : January 02 2021, 06:48 AM , By : UpperLuck