How to check if a column exists in Pandas This will work: if 'A' in df: But for clarity, I’d probably write it as: if 'A' in df.columns: