Menu
Coddy logo textTech

Not Ortalaması

Coddy'nin Python Journey'sinin Logic & Flow bölümünün bir parçası — ders 43 / 78.

challenge icon

Görev

Kolay

calculate_average_grade adında, bir argüman alan bir fonksiyon oluşturun: name (string). Fonksiyon şunları yapmalıdır:

  1. Öğrenci adının student_records sözlüğünde mevcut olup olmadığını kontrol edin.
    • Eğer mevcut değilse, "Student '<name>' not found." yazdırın ve None döndürün.
  2. Eğer isim mevcutsa, öğrencinin grades kümesindeki notların ortalamasını hesaplayın.
    • Eğer grades kümesi boşsa, 0 döndürün.
    • Aksi takdirde, ortalama notu bir float olarak hesaplayın ve döndürün.

Kodunuzun en altına aşağıdaki kod bloğunu ekleyin (veya mevcut olanla değiştirin):

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"))  # 87.5 döndürmeli
print(calculate_average_grade("Bob"))  # 75.0 döndürmeli
print(calculate_average_grade("Charlie"))  # Mevcut olmayan öğrenci, mesaj yazdırmalı ve None döndürmeli
print(calculate_average_grade("Alice"))  # Tekrar 87.5 döndürmeli

Kendin dene

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"]


add_student("Alice", 20, ["Math", "Physics"])
add_student("Bob", 22, ["Biology", "Chemistry"])
add_grade("Alice", 90)
add_grade("Alice", 85)
add_grade("Bob", 75)
add_grade("Charlie", 80)  # Non-existent student
print(is_enrolled("Alice", "Math"))  # Should return True
print(is_enrolled("Alice", "Biology"))  # Should return False
print(is_enrolled("Bob", "Biology"))  # Should return True
print(is_enrolled("Charlie", "Math"))  # Non-existent student, should print message and return False

Logic & Flow bölümündeki tüm dersler