Which TWO of the following are built-in Python decorators?
Trap 1: @private
There is no @private decorator.
Trap 2: @final
@final is from the 'typing' module.
Trap 3: @abstractmethod
@abstractmethod is in the 'abc' module, not built-in.
- A
@classmethod
@classmethod is a built-in decorator.
- B
@private
Why wrong: There is no @private decorator.
- C
@final
Why wrong: @final is from the 'typing' module.
- D
@abstractmethod
Why wrong: @abstractmethod is in the 'abc' module, not built-in.
- E
@staticmethod
@staticmethod is a built-in decorator.