Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Identify Consistent Performers | Tracking Athlete Performance
Python for Coaches
セクション 1.  5
single

single

bookChallenge: 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.

タスク

スワイプしてコーディングを開始

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 True values in the attendance list.
  • 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.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 1.  5
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt