diff --git a/django_project/db.sqlite3 b/django_project/db.sqlite3 index 8c1968c..759094d 100644 Binary files a/django_project/db.sqlite3 and b/django_project/db.sqlite3 differ diff --git a/django_project/django_project/__pycache__/__init__.cpython-310.pyc b/django_project/django_project/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000..b3694d2 Binary files /dev/null and b/django_project/django_project/__pycache__/__init__.cpython-310.pyc differ diff --git a/django_project/django_project/__pycache__/settings.cpython-310.pyc b/django_project/django_project/__pycache__/settings.cpython-310.pyc new file mode 100644 index 0000000..9e9338f Binary files /dev/null and b/django_project/django_project/__pycache__/settings.cpython-310.pyc differ diff --git a/django_project/django_project/__pycache__/urls.cpython-310.pyc b/django_project/django_project/__pycache__/urls.cpython-310.pyc new file mode 100644 index 0000000..3f65a64 Binary files /dev/null and b/django_project/django_project/__pycache__/urls.cpython-310.pyc differ diff --git a/django_project/django_project/__pycache__/wsgi.cpython-310.pyc b/django_project/django_project/__pycache__/wsgi.cpython-310.pyc new file mode 100644 index 0000000..12f0515 Binary files /dev/null and b/django_project/django_project/__pycache__/wsgi.cpython-310.pyc differ diff --git a/mygroup.py b/mygroup.py index dc49441..b55a448 100644 --- a/mygroup.py +++ b/mygroup.py @@ -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),