Pandy konwertują wszystkie kolumny ciągów na małe litery
df = df.applymap(lambda s:s.lower() if type(s) == str else s)
Courageous Cobra
df = df.applymap(lambda s:s.lower() if type(s) == str else s)