DataFrame 导出到 Excel 文件未在 Pandas 中更新

DataFrame Export to Excel File is not updated in Pandas

我导入了文件并从 sheet

中提取了行“Batch 12”
df = pd.read_excel (r'F:\Tutorials\PIAIC\AI Batch 12 Peshawar\Quarter 2\AIC Result.xlsx')
df[df['Batch']==('Batch 12')]

现在我想将这个“第 12 批次”的更新数据帧导出到一个 excel 文件,但是 excel 文件在导出后没有更新。

df.to_excel(r'F:\Tutorials\PIAIC\AI Batch 12 Peshawar\Quarter 2\New.xlsx',index=False)

您必须为代码的输出分配一个值,如下所示:

df = df[df['Batch']=='Batch 12']