Code Toolkit: Python, Spring 2023

Week 6 — Wednesday, March 1 — Class notes

  1. Review: loops
  2. New concept: working with many things
  3. Background and examples
  4. Lists

I. Review: loops

Last week we covered loops, and in particular, while loops.

Loops allow us to create repetition, which in coding is often called iteration.

Prior to last week we'd already seen one kind of repetition: the def draw() block, which runs all the code in that block and then repeats many times per second. (The number of repetitions per second is defined by the frame rate, and indicated by the special variable frameRate.) But this repetition with def draw() unfolds in time, and so is not typically referred to as iteration.

The repetition that we call iteration is how you would go from drawing one thing on the screen to drawing several, or hundreds, or millions, or a dynamic number of things that you don't know in advance.

The syntax for while loops looks like this:

i = 0
while i < 10:
    println("i = " + str(i))
    rect(i,i,5,5)
    i = i + 1

Which is comprised of: a variable declaration (what I call the looping variable), a boolean expression, and a variable increment.

If the boolean expression in the while statement returns True, all the code in the while block will run, and then Python will check the boolean expression again. If the expression is still True, the code will run again. And the code keeps running as long as the expression returns True, or we might say while it is True.

Remember: Don't forget your variable incremeent or you might end up with an infinite loop, which repeats forever without ever stopping.

I also talked briefly about how while loops are functionally equivalent to for loops, which offer you an option of a different syntax that effectively does the same thing. for loops look like this:

for i in range(10):
    println("i = " + str(i))
    rect(i,i,5,5)
There are times when you may need to use one type of loop over the other, but in general these are equivalent and you can use the one that is more clear to you.

Homework review. We looked at this code (Thanks, Lexi, for sharing!) and debugged it together: week06_hw_inclass.pyde.txt

That code demonstrates some experiments in creating color gradients within a nested loop. The code shows two main techniques for how to do this: using looping variables with the fill() command to generate a gradient using an RGB color specification, and using looping variables with lerpColor() to create a gradient that fades between two previously defined colors. The difference techniques in that file (three including a 2b option) are mutually exclusive. In other words, uncomment one to see what it does and experiment, then comment that one out and uncomment another to experiment with it.

II. Working with may things

Today we will learn about working with many things. So far if you wanted to move many things, you would hard code new variables for each one. In week 5 we learned how to draw many items using loops, but you couldn't move each item around individually. Today we will learn how to do that using a thing called lists.

In Python, a list is like a collection of variables.

In a certain way, this topic is like a mashup of variables and loops:

With loops, instead of drawing many things line-by-line, you can create a loop which draws many things at once, even a dynamic number of things.

With lists, instead of declaring each variable line-by-line, you can create one list that declares many variables at once, and can even allow you to work with a dynamic number of variables.

This introduces us to one of the most interesting aspects of computer science: data structures. The term data structure refers to a way of organizing many variables together for efficient and convenient use. The type of variable organization that you'll need to use in a given situation (i.e., the type of data structure) depends on the problem that you are trying to solve. In addition to lists, Python provides many other data structures, such as: sets, tuples, and dictionaries, among others. And beyond these data structures that come with Python, in computer science there are many other more complex kinds of data structures that go by names like: stacks, queues, linked lists, and trees. But in one sense, lists are the most fundamental data structure, and in a certain way it makes sense to think of them as underlying all these others.

Data structures allow you to start to think about modeling: how to organize your variables and other code in a way that matches the thing that you're trying to do. A good data structure could make your program much easier to implement and to read, while an inappropriately chosen data structure could make the thing that you're trying to do very hard and potentially less efficient in terms of computing resources.

(jump back up to table of contents)

III. Background and examples

Gene Kogan

Since lists are used to manage many things, they are often used to implement things like swarms, or herds of objects that behave as if they are acting independently or on their own.

Daniel Shiffman, a professor at NYU in the Interactive Telecommunications Program (ITP) graduate program, uses lists and other data structures to implement swarms that are used to simulate natural phenomenon like animals, plants, clouds, flowing liquids, and others.

For example, here is a video that demonstrates a simulation of "flocking", like birds or fish moving together. (It's a very cute video.) Shiffman's book Nature of Code offers detailed lessons in how to achieve affects like this.

Another, more aesthetically developed, example is this flocking demo by Gene Kogan.

And another great example is the project We Feel Fine by Jonathan Harris and Sep Kamvar. This project was made in 2006 using Processing and unfortuntely can be a bit difficult to run that now. (You will probably need to install Java for your browswer and OS version.) But there is documentation online, like this video that demonstrates how the project functioned.

(jump back up to table of contents)

IV. Lists