What is an Object in Python?

Question:

I am surprised that my question was not asked (worded like the above) before. I am hoping that someone could break down this basic term "object" in the context of a OOP language like Python. Explained in a way in which a beginner like myself would be able to grasp.

When I typed my question on Google, the first post that appears is found here.

This is the definition:
An object is created using the constructor of the class. This object will then be called the instance of the class.

Wikipedia defines it like this:
An object is an instance of a Class. Objects are an abstraction. They hold both data, and ways to manipulate the data. The data is usually not visible outside the object.

I’m hoping someone could help to break down this vital concept for me, or kindly point me to more resources. Thanks!

Asked By: jchua

||

Answers:

To go deep, you need to understand the Python data model.

But if you want a glossy stackoverflow cheat sheet, let’s start with a dictionary. (In order to avoid circular definitions, let’s just agree that at a minimum, a dictionary is a mapping of keys to values. In this case, we can even say the keys are definitely strings.)

def some_method():
    return 'hello world'

some_dictionary = {
    "a_data_key": "a value",
    "a_method_key": some_method,
}

An object, then, is such a mapping, with some additional syntactic sugar that allows you to access the “keys” using dot notation.

Now, there’s a lot more to it than that. (In fact, if you want to understand this beyond python, I recommend The Art of the Metaobject Protocol.) You have to follow up with “but what is an instance?” and “how can you do things like iterate on entries in a dictionary like that?” and “what’s a type system”? Some of this is addressed in Skam’s fine answer.

We can talk about the python dunder methods, and how they are basically a protocol to implementing native behaviors like sized (things with length), comparable types (x < y), iterable types, etc.

But since the question is basically PhD-level broad, I think I’ll leave my answer terribly reductive and see if you want to constrain the question.

Answered By: kojiro

In the context of Python and all other Object Oriented Programming (OOP) languages, objects have two main characteristics: state and behavior.

You can think of a constructor as a factory that creates an instance of an object with state and behavior.

State - Any instance or class variables associated to that object.

Behavior - Any instance or class methods

The following is an example of a class, in Python, to illustrate some of these concepts.

class Dog:
    SOUND = 'woof'
    def __init__(self, name):
        """Creates a new instance of the Dog class.

        This is the constructor in Python.
        The underscores are pronounced dunder so this function is called
        dunder init.
        """ 
        # this is an instance variable.
        # every time you instantiate an object (call the constructor)
        # you must provide a name for the dog
        self._name = name

    def name(self):
        """Gets the name of the dog."""
        return self._name

    @classmethod
    def bork(cls):
        """Makes the noise Dogs do.

        Look past the @classmethod as this is a more advanced feature of Python.
        Just know that this is how you would create a class method in Python.
        This is a little hairy.
        """
        print(cls.SOUND)

Though I agree with the comments that this question is a little vague. Please be a little more specific but the answer I’ve provided is a quick overview of classes and objects in Python.

Answered By: Skam

Everything is an object

An object is a fundamental building block of an object-oriented language. Integers, strings, floating point numbers, even arrays and dictionaries, are all objects. More specifically, any single integer or any single string is an object. The number 12 is an object, the string “hello, world” is an object, a list is an object that can hold other objects, and so on. You’ve been using objects all along and may not even realize it.

Objects have types

Every object has a type, and that type defines what you can do with the object. For example, the int type defines what happens when you add something to an int, what happens when you try to convert it to a string, and so on.

Conceptually, if not literally, another word for type is class. When you define a class, you are in essence defining your own type. Just like 12 is an instance of an integer, and "hello world" is an instance of a string, you can create your own custom type and then create instances of that type. Each instance is an object.

Classes are just custom types

Most programs that go beyond just printing a string on the display need to manage something more than just numbers and strings. For example, you might be writing a program that manipulates pictures, like photoshop. Or, perhaps you’re creating a competitor to iTunes and need to manipulate songs and collections of songs. Or maybe you are writing a program to manage recipes.

A single picture, a single song, or a single recipe are each an object of a particular type. The only difference is, instead of your object being a type provided by the language (eg: integers, strings, etc), it is something you define yourself.

Answered By: Bryan Oakley
  • An object is simply a collection of data (variables) and methods (functions) that act on data.

  • A class is a blueprint for that object.

Answered By: Mahdi Nazari

I think that the O.P. has a very good question. Object is a word that should come with a definition. I found this one that made things simpler for me. Maybe it will help you have a general concept of what an object is.

Objects: Objects are an encapsulation of variables and functions into a single entity. Objects get their variables and functions from classes. Classes are essentially a template to create your objects.

See: https://www.learnpython.org/en/Classes_and_Objects for further information.

This might not be a complete definition but it is a concept I can understand and work with.

Answered By: user10682171

Your question was perfectly fine, nothing to apologize for. Some people are just arrogant.

Your question being broad is the only way to interpret that you’re actually asking what the basic definition of "object" is; and in this case, for Python, the answer is "everything" < and that’s not confusing at all.

Every building block is an object (any variable, function, tuple, string, etc). It’s literally like having a Lego Set to build a Star Wars big ship and asking "hey, the manual says to be careful not break any piece; so, what is a piece?" < the answer would be; everything, every single individual element of that Lego Set is a piece.

Legit question.

Best,

Answered By: Kagio

In OOP, object is a very simple yet complicated concept that people don’t understands at first. I also had issue understanding it first but once you understands clearly what class is then it’s so easy to understands what object is. If i am an object then my class is "Homo Sapiens". Let us know more about classes.

Class and Object:

Class is a blueprint that we create to have any object with some specific characteristics. Let us take an example of any fruit, Apple. Apple will fall in to the class named Fruits and it will have some attributes which would be the taste, smell, shape, etc. So we can say that Apple is an object of the class Fruits which has different attributes associated with it.

Now, let us take a technical example. If there is a class defined by any programmer and if he assigns any object to that class then it means that the object will have all the attributes and methods which that particular class consists.

For further knowledge of class and object, you can use the official python link which i am providing here.

https://docs.python.org/3/tutorial/classes.html

Hope i am little helpful to you.

Have a great day.

Answered By: Mitul

The python documentation says below:

Objects are Python’s abstraction for data. All data in a Python
program is represented by objects or by relations between objects. (In
a sense, and in conformance to Von Neumann’s model of a “stored
program computer”, code is also represented by objects.)

Every object has an identity, a type and a value. An object’s identity
never changes once it has been created; you may think of it as the
object’s address in memory. The ‘is’ operator compares the identity of
two objects; the id() function returns an integer representing its
identity.

Answered By: Kai – Kazuya Ito