I am trying to get the value of the 3rd <td> tag in each <tr> in the table.
I tried:
math_grade = wait.until(EC.presence_of_element_located((By.TAG_NAME,'./body/div/div[1]/div[5]/div[1]/table/tbody'))).text
print(math_grade)
but it didn't work, knowing that, this table only shows after a search so i added a sleep(5) before this line of code runs.

Try this code to get values from each 3rd cell of each table row
P.S. Note that to use XPath as locator you need to pass
By.XPATHselector type but notBy.TAG_NAMEP.P.S. Add HTML-code samples as text, not as image-file