Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is everything an object in Python like Ruby?

I read on another Stack Overflow question that Python was just like Ruby, as it relates to "everything's an object," and everything in Python was an object, just like Ruby.

Is this true? Is everything an object in Python like Ruby?

How are the two different in this respect or are they really the same? For example, can you take a number and do the Ruby stuff I've seen like:

y = 5.plus 6 

Can that be done the same way in Python?

like image 229
johnny Avatar asked May 14 '09 21:05

johnny


People also ask

Is everything in Python is an object?

In Python everything is an object, which means every entity has some metadata (called attributes) and associated functionality (called methods).

Is everything an object in Ruby?

Practically everything in Ruby is an Object, with the exception of control structures. Whether or not under the covers a method, code block or operator is or isn't an Object, they are represented as Objects and can be thought of as such.

Is everything in Python a class?

In Python, everything is an object. Classes are objects, instances of classes are objects, modules are objects, and functions are objects.

Is everything in Python a string?

Since Python is an object-oriented programming language, and hence everything in Python is an object, every integer, string, list and functions.


2 Answers

DiveIntoPython - Everything Is an Object

Everything in Python is an object, and almost everything has attributes and methods. All functions have a built-in attribute __doc__, which returns the doc string defined in the function's source code. The sys module is an object which has (among other things) an attribute called path. And so forth.

Still, this begs the question. What is an object? Different programming languages define “object” in different ways. In some, it means that all objects must have attributes and methods; in others, it means that all objects are subclassable. In Python, the definition is looser; some objects have neither attributes nor methods (more on this in Chapter 3), and not all objects are subclassable (more on this in Chapter 5). But everything is an object in the sense that it can be assigned to a variable or passed as an argument to a function (more in this in Chapter 4).

Ruby Docs - To Ruby From Python

As with Python, in Ruby,... Everything is an object

So there you have it from Ruby's own website: in Python everything is an object.

like image 143
Unknown Avatar answered Sep 21 '22 06:09

Unknown


While everything is an object in Python, it differs from Ruby in its approach to resolving names and interacting with objects.

For example, while Ruby provides you with a 'to_s' method on the Object base class, in order to expose that functionality, Python integrates it into the string type itself - you convert a type to a string by constructing a string from it. Instead of 5.to_s, you have str(5).

Don't be fooled, though. There's still a method behind the scenes - which is why this code works:

(5).__str__() 

So in practice, the two are fundamentally similar, but you use them differently. Length for sequences like lists and tuples in Python is another example of this principle at work - the actual feature is built upon methods with special names, but exposed through a simpler, easier-to-use interface (the len function).

The Python equivalent to what you wrote in your question would thus be:

(5).__add__(6) 

The other difference that's important is how global functions are implemented. In Python, globals are represented by a dictionary (as are locals). This means that the following:

foo(5) 

Is equivalent to this in Python:

globals()["foo"].__call__(5) 

While Ruby effectively does this:

Object.foo(5) 

This has a large impact on the approach used when writing code in both languages. Ruby libraries tend to grow through the addition of methods to existing types like Object, while Python libraries tend to grow through the addition of global functions to a given module.

like image 41
Katelyn Gadd Avatar answered Sep 22 '22 06:09

Katelyn Gadd