I have an excel spreadsheet with multiple columns. I want the sheet to be filtered based on a row called 'Timing' And the value I want to filter for is called 'C10'. What is the code to write that will filter the Timing column for C10?
I tried
df_filtered=df[df['Timing] == 'C10'
The code did not work