To check if your df has Multiindex, you can do this:
isinstance(war_cinc.index, pd.MultiIndex)
This will return True.
To check for hierarchical columns, you can check nlevels:
if len(war_cinc.columns.nlevels) > 1:
This will be True in your case.
This will return True.
You can get the entire 2nd column like:
war_cinc[( 'cinc', 2)]
You need to pass all levels of the column in a tuple to fetch the column values.