As per the title. I've just had an interview with a startup, and the exercise was a very simple one that required the creation of a class to solve. I found myself struggling to do so, far more than I would have imagined.
Ask HN: Barely ever used OOP in Python, am I doing something wrong?
1–3 of 3 posts
Re: Ask HN: Barely ever used OOP in Python, am I doing something wrong?
#2Found this a second after I posted:
https://stackoverflow.com/questions/33072570/when-should-i-b...
Re: Ask HN: Barely ever used OOP in Python, am I doing something wrong?
#3Python 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.