Шереметьева Анастасия Александровна, 419/2 группа CorrectFloat 14648
Балтаев Глеб Иркинович 341 CorrectFloat 13903
f1from functools import wrapsf1from functools import wraps
22
3class Fix:3class Fix:
44
5    def __init__(self, n):5    def __init__(self, n):
6        self.n = n6        self.n = n
77
n8    def __call__(self, f):n8    def __call__(self, func):
99
n10        @wraps(f)n10        @wraps(func)
11        def decorator(*args, **kwargs):11        def wrapper(*args, **kwargs):
12            rounded_a = tuple((round(arg, self.n) if isinstance(arg, flo12            args = tuple((round(a, self.n) if isinstance(a, float) else 
>at) else arg for arg in args))>a for a in args))
13            rounded_kw = {key: round(value, self.n) if isinstance(value,13            kwargs = {k: round(v, self.n) if isinstance(v, float) else v
> float) else value for key, value in kwargs.items()}> for k, v in kwargs.items()}
14            result = f(*rounded_a, **rounded_kw)14            result = func(*args, **kwargs)
15            if isinstance(result, float):15            if isinstance(result, float):
16                return round(result, self.n)16                return round(result, self.n)
17            return result17            return result
t18        return decoratort18        return wrapper
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op