In our previous blogs, we have almost covered all the basic stuff. This blog will be a long one but the last one. The main agenda for this blog will be Magic methods and later we will look into Property Decorators
Special Methods or Magic Methods
These are the methods that we can use within the classes. They have some build-in behaviour within python. We are using the same idea to implement operator overloading. For example, if we are using the + operator for integers and strings both act differently based on the input or the instance
If we want to print the instance it will be returning the object itself. And it would be nice if we could see some details also we can do some modifications on the same.
These special methods are always with double underscores and hence they get the name “Dunders” . Dunder init is the most common special function that we use ( we have already used them). As we mentioned earlier the speciality of the dunders are they will automatically be called when the instances are initiated. Let us look into some more dunders
- Dunder repr: Unambiguous representation of the object and this used to debugging and logging
- Dunder str: It is a readable representation of the object and it used as a display to the end-user
And another interesting fact if you define repr without having str and then call str it will be returning the results of repr as a fallback.
We can retrieve the results in many formats as in the code. The main idea is that it allows us to change how our instances are displayed and these are the most used as well. There are more functions for arithmetic purposes.
The + function is doing the backend __add__
For more examples, consider that wherever you add two instances you should get the sum of their pays. Although it is not a good example for the sake of explaining it let us look into how it is done in the code.
As a side note if we return NotImplemented it will not throw an error all of a sudden, but it will fall back to the other instance and if it does not know how to handle it then eventually it wil throw an error
Property Decorators
This is something really interesting consider our same example and you set a first name last name you created another property email which will add the first and last and with the domain id as given in the codebase. Then you updated the first name alone and try printing all the following variables - first, last and email. Strangely the first got updated but not the email. But the function within the class Fullname also got updated because whenever we use the instance all the functions will get called again and it uses the latest value. How can we fix this problem, easiest way that comes to your mind will be to make the email a function. Yes, it is, but it will crash our code, because before we have been accessing email as an instance variable now we have to modify our code to an email function. To get rid of this we can use the property concept. The idea is adding a property decorator to a function will make it exactly as an instance variable see the code for example
Setter
Now let us consider more complicated situations where you updated the email and from that, the first and last name should get updated. But as of now, you can’t assign values to a function, right? Then what will you do? Make it property will work? Actually no. But after making them a property also add one more decorator called setter then it will work. The decorator name is “@property.setter” then within that redefine the function and do the actions ( the updations that you want to make) ..Also along you have to pass the parameter that you want to set along with the self-object to the function. Check the example
Deleter
Deleter property is more or less similar to setter where you can delete the details by accessing them via a property. The idea is whenever you delete things make sure that you assign that instance to a None value
Well, that is wrap for our small python series this entire series is my learning from a youtube channel, this is the link feel free to check it out 🔖