List is a very basic data structure, list is used to store multiple items in a single variable. We can use index to get the corresponding value in a list.
- List’s index starts from 0;
- List is contiguous in memory;
- For example, if we want to delete the element which index is 3, we have to move every element after it.