Learn how to create and manipulate 2D lists!
In programming, lists are used to store multiple items in a single variable:
The type of items that can be stored in a list isn’t limited to primitive data types, such as strings, ints and booleans - lists can also store objects and other data structures! Suppose this grocery shopper wanted to get their groceries from several different locations - with lists, they can create a list of lists, each one indicating a different store that each set of groceries needs to be purchased from:
Each list within the list has its own set of items associated with it, and each list is a single item within the grocery_list_enhanced
variable. When lists are stored within a list, it’s generally referred to as a 2D List.
2D Lists have the exact same properties as a regular list. To access an item within the 2D list, we reference the index at which the item is located:
To access an item within one of the list items, we have to reference its position within the list item itself:
Rather than store the list item and then the list item’s item in separate variables, we can combine the two index references in one call:
As demonstrated in the example above, the first index reference (0) accesses the list item, and the second index reference (2) accesses the item within the list. The general format for accessing items in a 2D list follows that same format:
2d_list[list][list item]
A bookstore stores its books in a 2D list, where each book’s name and author is stored in a list item, in that order. They’re having trouble recovering some of the information - help them access the book_list
and print out the author of the book The Autobiography of Malcolm X, and print the book written by the author Dan Brown.
These types of lists are referred to as 2D lists because they can be used to emulate two dimensional structures in the real world. We can reimagine our 2D lists as grids, rather than as linear data structures:
The grid representation allows us to think about and access each list as a row, and each item within the list as a column:
To get a value from the tic tac toe board, we can do so by finding its row, and then its column:
To find or print a value from a 2D list requires the use of nested iteration. Finding a value requires one for loop to iterate through all of the lists in a 2D list, and a second loop to iterate through all values within a list:
This same nested structure can be used to find a specific value in a 2D list.
The bookstore you’ve been working with wants to create a program that lets the cashier know if they have a certain book in stock. The program will print “true” if the book that they’ve entered is in stock. Help them create this program using a nested for loop.