Lesson 05-03: Basic List Functions

Learning Target: I can use python documentation to properly use list methods.

Python Documentation

The Python 3 documentation contains all the information you need to know about python - this includes what list functions are available to you! In the area below, using the documentation link above, try to figure out how to use these functions. Remember to use CTRL+F (Windows) or CMD+F (Mac) to find specific words on a page.

Using The Functions

list.append()

list.remove()

list.insert()

len(list)

Next Section - Lesson 05-04: Value Representation of Lists