1. dataframe导出csv表格,去掉默认索引

answer_data.to_csv('./my_model_stacking.csv',index = False)

dataframe导出csv表格,去掉默认索引_其它