I'm new to Python and I saw in many projects that python programmers uses classes even for small projects. Do we need to use classes for every python project? Do python veterans write codes only with classes or we can avoid it?
I understand the need for OOP in some cases - like, managing a store. But what if all my functionality, for example, is just to display statistical information from DB rows - should I use classes for this too?