Renaming columns is easy using pandas, first lets build a quick dataframe:
import pandas as pd
x= {'Job Title' :['Manager', 'Tech', 'Supervisor'],
'Employee' : ['Jill', 'Will', 'Phil']}
df = pd.DataFrame(x)

now to rename, we have a few options
df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}, inplace=True)
#or you can move it to a new dataframe if you want to keep the original intact
df1 = df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'})
#note I left off the inplace=True argument on the second since I didn't want to
#overwrite the original
Here are a few other ways to do it, each will give you the same results
df2 = df.rename({'Job Title': 'Job_title', 'Employee': 'Emp'}, axis=1)
df3 = df.rename({'Job Title': 'Job_title', 'Employee': 'Emp'}, axis='columns')
df4 = df.rename(columns={'Job Title': 'Job_title', 'Employee': 'Emp'})

Last Lesson: Pandas Working with DataFrames
Next Lesson: Python: Working with Rows in DataFrames
Return to: Python for Data Science Course
Follow this link for more Python content: Python