Tag

Dunder Methods

0 views collected around this technical thread.

php中文网 Courses
php中文网 Courses
Apr 1, 2025 · Fundamentals

Understanding Python Magic (Dunder) Methods

This article explains Python's magic (dunder) methods, categorizing them by purpose—construction, representation, comparison, arithmetic, container behavior, callability, and context management—and provides clear code examples illustrating how to customize class behavior for more Pythonic, intuitive objects.

Dunder MethodsMagic MethodsProgramming
0 likes · 11 min read
Understanding Python Magic (Dunder) Methods
Test Development Learning Exchange
Test Development Learning Exchange
Aug 20, 2024 · Fundamentals

Using Single and Double Underscores in Python for Internal Methods, Attributes, and Special Dunder Methods

The article explains how to use single and double underscores in Python to define internal methods, attributes, and special dunder methods such as __init__, __str__, __bool__, __new__, __format__, __eq__, __del__, __copy__, and __deepcopy__, providing usage scenarios and code examples for each.

Dunder MethodsPythonbackend development
0 likes · 8 min read
Using Single and Double Underscores in Python for Internal Methods, Attributes, and Special Dunder Methods