1.df.columns = ['a','b','c']

这种办法个数必须对应

2.df.rename(columns={'A':'a', 'B':'b', 'C':'c'}, inplace = True)

 使用字典修改列名,好处是可以修改任意个数的列