Answers for "replace space with dash python in pands datafram"

2

replace space with _ in pandas

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

Code answers related to "replace space with dash python in pands datafram"

Python Answers by Framework

Browse Popular Code Answers by Language