I'm parsing a large excel sheet for specific strings found in one column and need to export those rows found to a new sheet.
I've done the following: Selected the file BigExcel = r"path to file"
Created dataframe df=pd.read_excel(BigExcel)
Selected rows with a specific string in a specific column df[df["ModuleAndEventText'].str.contains("prtest3")]
Aaaaand now I don't know how to move that output to a new excel or csv file