1new_columns = {"col1": "1st", "col2": "2nd"}
2df_new = df.rename(columns=new_columns)
3
4"""
5 col1 | col2 | col3 1st | 2nd | col3
6 a | d | g a | d | g
7 b | e | h => b | e | h
8 c | f | i c | f | i
9"""