Answers for "df strip all whitespace"

1

replace all spacec column with underscore in pandas

import pandas as pd 

# remove spaces in columns name
df.columns = df.columns.str.replace(' ','_')
Posted by: Guest on June-04-2020

Code answers related to "df strip all whitespace"

Python Answers by Framework

Browse Popular Code Answers by Language