Below is an example of what I have in a Google Sheet:
1 | ID | Fav Color | Fav Book |
2 | 01 | color1 | book2 |
3 | 02 | color2 | book2 |
4 | 03 | color2 | book1 |
...
100 | 99 | color1 | book2 |
Using gspread, is it possible to find & print the ID and favorite color of only the people that say book2 is their favorite book? (expected result: print rows 2, 3, and 100)
I've been looking through the gspread docs, and just can't think of anything. Any help is greatly appreciated.