Python instance method vs static method, which one to use on when?
I have been writing python OO for a while and every time when I create a method, I always ask myself, should this be instance method or staticmethod (or classmethod)? As you might already aware that the difference between instance method and static method is that static method doesn’t have access to the instance, same… Read More »