View on GitHub

reading-notes

My learning journal for Code Fellows

Pythonisms

Dunder Methods

Dunder methods are special methods that allow you to emulate the behavior of built-ins in classes

Kinds of dunder methods:

init : sets up the object with the necessary parts of the object

str : shows a representation of the object as a string to the user

len : can use len on the object specific to how that specific class is constructed

eq : checks if the same value in two objects are the same

add : allows you to add the same value of two different objects

call : allows you to print a readout of certain characteristics of the objects, whatever you would like it to show

The main thing to understand with dunder methods is that you can essentially set them to do anything that you would like them to do, the only limit is really your understanding of the object structure itself.

Iterators

Things I want to know more about