Files
developer-roadmap/roadmaps/python/content/methods@zAS4YiEJ6VPsyABrkIG8i.md
T
Arik Chakma 274082fd77 feat: clean roadmap content and sync scripts (#10181)
* refactor: clean to roadmap content

* refactor: move shared helpers into scripts/lib
2026-07-28 05:45:17 +06:00

785 B
Raw Blame History

Methods and Dunder Methods

Methods are functions defined within a class that describe the behaviors or actions an object can perform. Dunder methods, short for "double underscore" methods, are special built-in methods—such as __init__ or __str__—that allow you to define how your objects interact with Pythons built-in operations and syntax. By implementing these methods, you can customize how objects are initialized, represented as strings, compared, or used with mathematical operators.

Visit the following resources to learn more: