Федор Попко, 405 группа CorrectFloat 13598
Аксенов Павел Николаевич 530 CorrectFloat 14601
t1from functools import wrapst1from 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
8    def __call__(self, func):8    def __call__(self, func):
99
10        @wraps(func)10        @wraps(func)
11        def wrapper(*args, **kwargs):11        def wrapper(*args, **kwargs):
12            rounded_args = tuple((round(arg, self.n) if isinstance(arg, 12            rounded_args = tuple((round(arg, self.n) if isinstance(arg, 
>float) else arg for arg in args))>float) else arg for arg in args))
13            rounded_kwargs = {k: round(v, self.n) if isinstance(v, float13            rounded_kwargs = {k: round(v, self.n) if isinstance(v, float
>) else v for k, v in kwargs.items()}>) else v for k, v in kwargs.items()}
14            result = func(*rounded_args, **rounded_kwargs)14            result = func(*rounded_args, **rounded_kwargs)
15            return round(result, self.n) if isinstance(result, float) el15            return round(result, self.n) if isinstance(result, float) el
>se result>se result
16        return wrapper16        return wrapper
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op