Challenge: Identify Consistent Performers
Coaches often want to reward or recognize athletes with high attendance. Automating the identification of consistent performers helps ensure fair recognition and motivates athletes to maintain their commitment. In this challenge, you will work with attendance records to find out which athletes have attended at least 90% of their sessions.
Swipe to start coding
Write a function that takes a list of attendance records and returns a list of names for athletes with at least 90% attendance.
- Iterate over each record in
attendance_records. - For each record, calculate the percentage of
Truevalues in theattendancelist. - If the percentage is at least 90%, include the athlete's name in the result list.
- Return the list of names with at least 90% attendance.
Solución
¡Gracias por tus comentarios!
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Genial!
Completion tasa mejorada a 4.76
Challenge: Identify Consistent Performers
Desliza para mostrar el menú
Coaches often want to reward or recognize athletes with high attendance. Automating the identification of consistent performers helps ensure fair recognition and motivates athletes to maintain their commitment. In this challenge, you will work with attendance records to find out which athletes have attended at least 90% of their sessions.
Swipe to start coding
Write a function that takes a list of attendance records and returns a list of names for athletes with at least 90% attendance.
- Iterate over each record in
attendance_records. - For each record, calculate the percentage of
Truevalues in theattendancelist. - If the percentage is at least 90%, include the athlete's name in the result list.
- Return the list of names with at least 90% attendance.
Solución
¡Gracias por tus comentarios!
single