How can you identify special methods in Python such as constructors?

(1 point)
Responses

parentheses

parentheses

dunders

dunders

curly braces

curly braces

asterisks

The correct answer is "dunders".

Special methods in Python, such as constructors, are identified by using double underscores (also known as dunders) before and after the method name. For example, the constructor method in Python is named `__init__()`.