make lower case column code example
Example: change column names to lowercase
# Make the Column Names into Lower-Case:
# To make the Column Names All in Lower-Case:
dete_survey_updated.rename(columns = str.lower, inplace = True)
# Make the Column Names into Lower-Case:
# To make the Column Names All in Lower-Case:
dete_survey_updated.rename(columns = str.lower, inplace = True)