Answers for "replace spaces in column names pandas"

1

pandas replace column name spaces with underscore

import pandas as pd 

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

replace space with _ in pandas

data.columns = data.columns.str.replace(' ','_')
Posted by: Guest on August-13-2021

Code answers related to "replace spaces in column names pandas"

Python Answers by Framework

Browse Popular Code Answers by Language