() Decorator Operator Description Calls a callable object with specified arguments. Syntax callable([*args, **kwargs]) callable A callable object, like for instance: a function, class, method or class instance with __call__ method defined. Return Value #TODO Time Complexity #TODO Example >>> # calling a built-in function >>> abs(-10) 10 See Also #TODO