Live data from Hacker News

Ask HN: Barely ever used OOP in Python, am I doing something wrong?

news.ycombinator.com

1–3 of 3 posts

Re: Ask HN: Barely ever used OOP in Python, am I doing something wrong?

#3
Python allows you to use imperative, functional and object-oriented programming paradigms. Even a mixture of all three.

Depending on the problem being solved your abstractions might better fit one of those three than the other two. I consider it to be a feature for Python.