Write the RIGHT Code

I am writing this blog as an awareness for the developers to write good quality code. As a human being we all take care of good hygiene, cleanliness, good looks etc etc etc. So that we live longer healthier in a good way. So why do we write code so messed up that  the next person … Continue reading Write the RIGHT Code

Access Specifiers/ Private-Protected in Python OOP

By default all methods and attributes in a python class are public. That means They can be accessed by the class members and by the module which contains it's import. There is no inbuilt syntax available for private, protected, friend, protected friend attribute in python, but you can do necessary changes to your variables to … Continue reading Access Specifiers/ Private-Protected in Python OOP