When to Write Classes in Python And Why it Matters

When people come to Python one of the things they struggle with is OOP (Object Oriented Programming). Not so much the syntax of classes, but more when and when not to use them. If that’s you, read on. In this article I will give you some insights that will get you clarity on this.

Code Challenge 14 – Write DRY Code With Decorators

Hi Pythonistas, a new week, a new ‘bite’ of Python coding! This week we let you practice with decorators, a nice way to abstract away common functionality. It allows you to alter the behavior of a callable without modifying the callable itself. We agree with Dan Bader that ‘understanding decorators is a milestone for any serious Python programmer.’ Enjoy!