Skip to main content
Engineering LibreTexts

15.1: Programmer-defined types

  • Page ID
    40815
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    We have used many of Python’s built-in types; now we are going to define a new type. As an example, we will create a type called Point that represents a point in two-dimensional space.

    In mathematical notation, points are often written in parentheses with a comma separating the coordinates. For example, \( (0,0) \)represents the origin, and \( (x,y) \) represents the point \( x \) units to the right and \( y \) units up from the origin.

    There are several ways we might represent points in Python:

    • We could store the coordinates separately in two variables, \( x \) and \( y \).
    • We could store the coordinates as elements in a list or tuple.
    • We could create a new type to represent points as objects.

    Creating a new type is more complicated than the other options, but it has advantages that will be apparent soon.

    A programmer-defined type is also called a class. A class definition looks like this:

    class Point:
        """Represents a point in 2-D space."""
    

    The header indicates that the new class is called Point. The body is a docstring that explains what the class is for. You can define variables and methods inside a class definition, but we will get back to that later.

    Defining a class named Point creates a class object.

    >>> Point
    <class '__main__.Point'>
    

    Because Point is defined at the top level, its “full name” is __main__.Point.

    The class object is like a factory for creating objects. To create a Point, you call Point as if it were a function.

    >>> blank = Point()
    >>> blank
    <__main__.Point object at 0xb7e9d3ac>
    

    The return value is a reference to a Point object, which we assign to blank.

    Creating a new object is called instantiation, and the object is an instance of the class.

    When you print an instance, Python tells you what class it belongs to and where it is stored in memory (the prefix 0x means that the following number is in hexadecimal).

    Every object is an instance of some class, so “object” and “instance” are interchangeable. But in this chapter I use “instance” to indicate that I am talking about a programmer-defined type.


    This page titled 15.1: Programmer-defined types is shared under a CC BY-NC 3.0 license and was authored, remixed, and/or curated by Allen B. Downey (Green Tea Press) via source content that was edited to the style and standards of the LibreTexts platform; a detailed edit history is available upon request.

    • Was this article helpful?