多项选择题

在原先数据帧df2的基础上,拼接一个数据帧df1的方法错误的是()

A.del df2[’年龄’]
B.df2.drop(labels=[’年龄’],axis=1,inplace=False)
C.df2=df2.append(df1)
D.以上都对