A Guide on Using Lists in Python
A comprehensive tutorial on how to create lists, change list elements, remove elements, and other list operations with the help of examples.

Lists are used to store multiple items in a single variable.
Lists are one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary, all with different qualities and usage.