PANDAS mengonversi semua kolom string ke huruf kecil

df = df.applymap(lambda s:s.lower() if type(s) == str else s)
Courageous Cobra