📜  如何在 python 代码示例中更改数据框的列

📅  最后修改于: 2022-03-11 14:45:16.740000             🧑  作者: Mango

代码示例1
new_columns = {"col1": "1st", "col2": "2nd"}
df_new = df.rename(columns=new_columns)

"""
 col1 | col2 | col3            1st | 2nd | col3
   a  |   d  |     g              a  |  d  |  g
   b  |   e  |   h        =>      b  |  e  |  h
   c  |   f  |   i              c  |  f  |  i
"""