# Section 1: Find the student with the highest attendance in the first five rows # We'll use .head() to get the first five rows, and then find the row with the max attendance first_five = df.head(5) ...