Login
📚 Introduction to Python Programming
Chapters ▾
⇩ Download ▾

9.6 Chapter summary

Highlights from this chapter include:

At this point, you should be able to write programs using lists.

Table 9.1 Chapter 9 reference.
FunctionDescription
append(element)Adds the specified element to the end of a list.
remove(element)Removes the specified element from the list if the element exists.
popRemoves the last element of a list.
max(list)Returns the maximum element of the list specified.
min(list)Returns the maximum element of the list specified.
sum(list)Returns the summation of a list composed of numbers.
sortSorts a list on which the method is called in ascending order.
reverseReverses the order of elements in a list.
copyMakes a complete copy of a list.