python rename code example
Example 1: rename columns pandas
df.rename(columns={'oldName1': 'newName1',
'oldName2': 'newName2'},
inplace=True, errors='raise')
Example 2: python how to rename columns in pandas dataframe
pandas_dataframe.columns = ['list', 'of', 'column', 'names']
pandas_dataframe.rename(columns={'column_name_to_change':'new_name'})
pandas_dataframe.index = ['list', 'of', 'row', 'names']
pandas_dataframe.rename(index={'row_name_to_change':'new_name'})
Example 3: pandas rename column
df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"}, inplace=True)
Example 4: python rename file
import os
os.rename('guru99.txt','career.guru99.txt')
Example 5: rename file python
import os
os.rename('old_name.txt','new_name.txt')