Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

replace all spacec column with underscore in pandas

import pandas as pd 

# remove spaces in columns name
df.columns = df.columns.str.replace(' ','_')
 
PREVIOUS NEXT
Tagged: #replace #spacec #column #underscore #pandas
ADD COMMENT
Topic
Name
1+9 =