Answers for "python df drop all columns with data types string"

1

Python function remove all whitespace from all character columns in dataframe

df.columns = df.columns.str.replace(' ', '')
Posted by: Guest on December-24-2020

Python Answers by Framework

Browse Popular Code Answers by Language