In this lesson, we'll take a look at some of the properties and utilities that come with the list data structure.
We'll cover the following
Adding Elements
Removing Elements
List Slicing
Index Search
List Sort
Adding Elements
All the elements of a list cannot always be specified beforehand and there’s a strong possibility that we’ll want to add more elements during runtime.
The append() method can be used to add a new element at the end of a list. The following template must be followed: