Python überprüfen, ob eine Variable ein Pandadataframe ist

import pandas as pd
.....
.....
ifDataframe = isinstance(var, pd.DataFrame)
Purple Team