5. Data Structures¶ This chapter describes some things you’ve learned about already in more detail, and adds some new things as well. 5.1. More on Lists¶ The list data type has some more methods. Here are all of the methods of list objects: list.append(x) Add an item to the end of the list. Similar to a[len(a):] = [x]. list.extend(iterable) Extend the list by appending all the items from the itera