Is Python fully object oriented?

With the exception of access specifiers, Python follows an object-oriented programming paradigm and includes all of the core OOPs concepts such as inheritance, polymorphism, and more. Strong encapsulation is not supported in Python (adding a private keyword before data members). It does, however, have a data concealing convention, which is to preface a data member with two underscores.