df新增一列数据,并指定列名

 方法1:直接指定df列名赋值为list即可

skill_info_df['age'] = age_list

ps:list的长度要和df对齐

方法二 使用insert:

你可能感兴趣的:(python,人工智能,dataframe)