mirror of
https://github.com/Faridik/Carolyn.git
synced 2026-07-08 13:21:53 +00:00
15 lines
373 B
Python
15 lines
373 B
Python
class Assignment:
|
||
"""Задание."""
|
||
|
||
def __init__(self, weight: float, values: tuple):
|
||
self.weight = weight
|
||
self.values = values
|
||
|
||
@property
|
||
def total(self) -> float:
|
||
"""Получить общую оценку по заданию.
|
||
|
||
`вес*СУММ(рез-ты)`
|
||
"""
|
||
return sum(self.values) * self.weight
|