Code Toolkit: Python, Spring 2025

Week 5 — Friday, February 21 — Class notes

Table of contents for today

  1. Review of last week
    1. a. In-class code example: collision detection
  2. Coding repetition: background & overview
    1. Creative inspiration: Conceptual Art & Sol Lewitt
  3. Loops
    1. Common Errors
    2. Nested loops
    3. Strategies in loop organization
    4. for loops

I. Review of last week

Last week we learned about conditionals and the syntax of if and elsestatements, along with elif, and we used this to respnd to user-triggered events. Broadly, this could be divided into three topics:

  1. We looked at the syntax for three kinds of blocks:

    if conditional:
      # instructions here
    
    if conditional:
      # instructions here
    else:
      # instructions here
    
    if conditional:
      # instructions here
    elif conditional:
      # instructions here
    else:
      # instructions here
    


    The conditional is comprised of an expression that evaluaates to a Boolean value. These allow us to ask questions about the status of our program. Things like: "Is the mouse being pressed?" "Is the mouse on the right side of the screen??" "Is the size of this shape greater than 200 pixels?"

    Inside the code blocks (the indented lines after a colon) go any arbitrary Python / Processing statements and commands, which get executed if the conditions are met (if they evaluate to True).

    Boolean expressions are variables that evaluate to True and False (like mousePressed or keyPressed) together with boolean operators that allow us to combine these True and False values to make more detailed conditions.

    In Python, the boolean operators are:

    • and meaning both parts must be True
    • or meaning at least one part must be True
    • not meaning the thing that follows must be False

    In addition to these boolean operators, we can also ask questions about numbers, using comparison operators:

    • less than (<) meaning the value on the left must be less than the value on the right
    • greater than (>) meaning the value on the left must be greater than the value on the right
    • equal to (==) meaning both values must be equal. Remember: this is different from the assignment operator, which only uses one equal sign (=). The assignment operator is making a statement: "This variable now equals this value"; while the equality comparison asks a question: "Is the variable on the left equal to the variable on the right?" It is easy to mix them up, so be careful and don't forget!!!
    • less than or equal to (<=). This is a shortcut. It is very useful, but can always be written another way. For example: x <= 10 could also be written as x < 10 or x == 10, or if you're working with whole numbers, as x < 11.
    • greater than or equal to (>=). Same as above.

  2. We also looked at several new special Processing variables:

    • mousePressed: a Boolean variable that is True whenever the mouse is being pressed

    • keyPressed: a Boolean variable similar to the above that is True whenever any key is being pressed.

    • key: a variable that contains a string (text in single or double quotes, 'a' or "s") of whichever character the user has most recently pressed. You can check this value by specifying a string literal with quotes and using the comparison operator for equality:

      if key == 'a':

  3. And lastly, we looked at two new kinds of blocks for event handling:

    def mousePressed():
        # code instructions
    
    and
    def keyPressed():
        # code instructions
    
    Unlike the special variables mousePressed and keyPressed, these blocks respond to every mouse or key press. That means that each user action will trigger the code in these blocks exactly once, and it is not depending on the current frameRate of your program.

If any of that remains confusing, please review the class notes from last week or reach out for help.

a. In-class code example: collision detection

I was asked about how to detect if two game characters have "collided", or in other words, two different moving geometric objects have moved into the same space in the draw window. To understand that, let's look through the following example, shared here as a Gist, which should hopefully be helpful for anyone pursuing the game option for the midterm.

week05_collision_detection.pyde

The above code demonstrates two different methods for doing this. They are labeled in the code as Method A (lines 35-36) and Method B (lines 39-40). You can experiment with each method by commenting out lines 35-36 and uncommenting lines 39-40, or vice versa. Remember that to "comment out" code you add # at the start of the line and Python will ignore this code. To uncomment, remove the # character and Python will then run this code. You should probably only have one method uncommented at a time. Having both will interfere with each other.



Sol Lewitt

II. Coding repetition: background & overview

Today we will learn how to create repetition with our code. This is one of the most powerful concepts within software. So far this semester we have learned:

And all of these things are essential components of software.

Repetition, as we'll learn today, is another key concept that is at the core of what software does.

The kind of repetition that we are going to learn today allows you to write a program that does something hundreds, thousands, millions, or billions of times. Whenever you hear people talking about the power of software to proces "big data", or to search through billions of web pages, they are referencing the ability of software to implement some kind of repetition. It lets you write a piece code, and then repeat that an inhuman number of times.

a. Creative inspiration: Conceptual Art & Sol Lewitt

But first, let's consider some examples of related creative work that explores these kinds of forms, which we can draw on for inspiration this week.

Conceptual Art was a movement that rose to prominence in the 1960s, made popular by artists such as Sol Lewitt and Yoko Ono. This body of work put more emphasis on the idea or the concept of the artwork, more than the technical or material implementation or rendering. In Conceptual Art, the artwork was considered to be the idea itself, with various instantiations relegated to a lower priority, or ignored altogether.

As Sol Lewitt wrote in his essay "Paragraphs on Conceptual Art" (June 1967, Artforum) "When an artist uses a conceptual form of art, it means that all of the planning and decisions are made beforehand and the execution is a perfunctory affair. The idea becomes a machine that makes the art."

Yoko Ono

If this idea sounds a lot like computer programming to you, you wouldn't be alone. Several digital artists have drawn inspiration from Conceptual Art to draw parallels in the ways that with software and other digital media, we often create machine configurations that themselves produce cultural objects.

In fact, one of the creators of Processing, Casey Reas, produced a 2004 Processing project related to Lewitt's work: {Software} Structures project at the Whitney, curated by Christiane Paul.

Beyond this general connection to software, this week we'll look at Sol Lewitt's work as an example of creative experimentation with formal pattern and repetition. This video documents a 2008 installion of his work at MoMA:

Behind the Scenes: Wall Drawing #260

In addition to the way that Lewitt uses language to create something like a computer program to generate a drawing, let's also pay attention to the way that he uses logic, combinatorics, and repetition, rendered here in the form of a grid of geometric shapes.

There are several installations of Sol Lewitt's work throughout New York City. One of his line drawings was recently installed in the library at Pratt University in Brooklyn, which you could make arrangements to go see. Another huge colorful piece is at the 59th Street / Columbus Circle subway station. And another is in the lobby of 55 West 13th St (at Sixth Ave), on the campus of The New School.

(jump back up to table of contents)

III. Loops