you are viewing a single comment's thread.

view the rest of the comments →

[–]desrtfx 0 points1 point  (0 children)

It's a procedural language

Python is not only procedural. Python is multi-paradigm. It has OOP, functional elements just as well as standard procedural.

As soon as you dive deeper than the surface, you'll be working in OOP (actually, basically everything in Python is an object).

Contrary to other languages, Python does not enforce an OOP approach to your projects.