Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Simulate Sending Notifications | Automating Classroom Tasks
Python for Teachers
セクション 3.  7
single

single

bookChallenge: Simulate Sending Notifications

メニューを表示するにはスワイプしてください

Teachers often need to notify students about their performance. In this challenge, you'll generate personalized messages for students based on their grades.

タスク

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

Write a Python script that loops through a dictionary of student grades and prints a customized notification for each student.

  • Loop through each student and their grade in the student_grades dictionary.
  • If the grade is 90 or above, print the exact message: Congratulations {student}, you scored {grade}! Excellent work!
  • If the grade is between 70 and 89 inclusive, print the exact message: Good job {student}, you scored {grade}. Keep it up!
  • If the grade is below 70, print the exact message: {student}, you scored {grade}. Let's work together to improve your performance.
  • Use string formatting to include the student's name and grade in each message so that the output matches the examples above.
  • Print the appropriate message for each student.

解答

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

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

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

セクション 3.  7
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt