pandas 逐行增加

简单的逐行添加内容,可以:

df.loc[``len``(df)] ``= [``16``, ``17``, ``18``, ``19``]

但需要注意:len(df) 生成的是 int,如果生成的 int,df 已经存在了,会覆盖该行数据,而不会新增