DataFrame插入最后一行的方式有很多种,以下我将根据我平时的经验将其整理起来,后续如有新方法我也将添加进去。
1、用列表形式插入:df_txt.loc[len(df_txt)] = [number,mail] #此处根据需要用iloc或者loc
2、用字典形式插入: df_content = df_content.append(pd.DataFrame(s_cats,index = [0]),ignore_index=True)
#s_cats为字典,形如:{'11': '2', '26': '2', '310': '2', '412': '2', 'number': '221411'}