Fairly new to python here,
I have a python tuple
reportTuple = (('Keith', 'Saturday', 10), ('Jane', 'Monday', 12))
and I want to print the name and the number but only if the value is Saturday. (print elements 0, 2 but only if elements 1 value == Saturday.)
Any ideas how to write to write an if statement to grab them?