Why is Python not fully object-oriented?

Question:

I want to know why Python is not fully object-oriented. For example, it does not support private, public, protected access level modifiers.

What are the advantages and disadvantages of this? By these expressions, Python is suitable for what applications (Desktop, Scientific, Web or other)?

Asked By: Mahdi Amrollahi

||

Answers:

Python doesn’t support strong encapsulation, which is only one of many features associated with the term “object-oriented”.

The answer is simply philosophy. Guido doesn’t like hiding things, and many in the Python community agree with him.

Answered By: Marcelo Cantos

I think Python is designed to be a hybrid. You can write in object oriented or functional styles.

The hallmarks of object-orientation are abstraction, encapsulation, inheritance, and polymorphism. Which of these are missing from Python?

Object-orientation is a continuum. We might say that Smalltalk is the purest of the pure, and all others occupy different places on the scale.

No one can say what the value of being 100% pure is. It’s possible to write very good object-oriented code in languages that aren’t Smalltalk, Python included.

Python is useful in all those areas: scientific (NumPy), web (Django), and desktop.

Answered By: duffymo

I believe Python is more of a very practical, pragmatic language.

Concepts which offer value to the developer are put in, without too much consideration about theological concepts like “proper OO design” and stuff. It’s a language for people who have real work to do.

I think Python is suitable for all kinds of environments, though Desktop is a bit difficult due to the lack of a single framework. For all applications it’s handy to use a framework,
like NumPy for computational stuff, Twisted or Django for web stuff, and WxWidgets or other for Desktop stuff.

Answered By: extraneon

Guido once said that “we are all consenting adults here”. Here’s the longer explanation from long ago: http://mail.python.org/pipermail/tutor/2003-October/025932.html

There’s an agreement that underscores mean private elements and you should not use them. Unless you know what you’re doing and you really want to.

The link also mentions another way to put it in case of Perl:

“a Perl module would prefer that you
stayed out of its living room
because you weren’t invited, not
because it has a shotgun.”

Answered By: viraptor

Access modifiers (public, private, protected, etc) are not required for class-based programming. They are just a feature, like multiple inheritance.

Answered By: Daniel Vassallo

What exactly is full object oriented? Alan Kay said “Actually I made up the term “object-oriented”, and I can tell you I did not have C++ in mind.”. Admittedly, he probably did not have python in mind either, but it is worth noting that Smalltalk also protects classes by convention, no mandate.

Answered By: deinst

A language is said to Full Objective Oriented if it has no primitive data types. Each data type we need to construct.

Answered By: Reshmi Paul
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.