コース別一覧
CoddyのPythonジャーニー「Logic & Flow」セクションの一部 — レッスン 44/78。
チャレンジ
簡単1つの引数 course (文字列) を受け取る、list_students_by_course という名前の関数を作成してください。この関数は以下の処理を行う必要があります:
student_records辞書を反復処理し、指定されたcourseに登録されているすべての学生を見つけます。- そのコースに登録されている学生の名前のリストを返します。
- そのコースに登録されている学生がいない場合は、空のリストを返します。
コードの最後に、以下のコードブロックを追加(または置換)してください:
add_student("Alice", 20, ["Math", "Physics"])
add_student("Bob", 22, ["Math", "Biology"])
add_student("Diana", 23, ["Chemistry", "Physics"])
print(list_students_by_course("Math")) # ["Alice", "Bob"] を返す必要があります
print(list_students_by_course("Physics")) # ["Alice", "Diana"] を返す必要があります
print(list_students_by_course("Biology")) # ["Bob"] を返す必要があります
print(list_students_by_course("History")) # 空のリストを返す必要があります自分で試してみよう
student_records = {}
def add_student(name, age, courses):
if name in student_records:
print(f"Student '{name}' already exists.")
return
student_records[name] = {"age": age, "grades": set(), "courses": set(courses)}
print(f"Student '{name}' added successfully.")
def add_grade(name, grade):
if name not in student_records:
print(f"Student '{name}' not found.")
return
student_records[name]["grades"].add(grade)
print(f"Grade {grade} added for student '{name}'.")
def is_enrolled(name, course):
if name not in student_records:
print(f"Student '{name}' not found.")
return False
return course in student_records[name]["courses"]
def calculate_average_grade(name):
if name not in student_records:
print(f"Student '{name}' not found.")
return None
grades = student_records[name]["grades"]
if not grades:
return 0
return sum(grades) / len(grades)
add_student("Alice", 20, ["Math", "Physics"])
add_student("Bob", 22, ["Biology", "Chemistry"])
add_grade("Alice", 90)
add_grade("Alice", 85)
add_grade("Bob", 75)
print(calculate_average_grade("Alice")) # Should return 87.5
print(calculate_average_grade("Bob")) # Should return 75.0
print(calculate_average_grade("Charlie")) # Non-existent student, should print message and return None
print(calculate_average_grade("Alice")) # Should return 87.5 again