change users

This commit is contained in:
root
2025-09-29 15:56:31 +03:00
parent 6a957655bf
commit 636d9d7051
6 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -36,7 +36,7 @@ def print_students(students, target_score=4.5):
print(u"Имя".ljust(15), u"Фамилия".ljust(15), u"Экзамены".ljust(40), u"Оценки".ljust(20))
for student in students:
if sum(student["marks"]) / len(student["marks"]) > 4.5:
if sum(student["marks"]) / len(student["marks"]) > target_score:
print(
student["name"].ljust(15),
student["surname"].ljust(15),