Python List Operation Notes for Beginners

Python list is a basic data type, which is a good structure to save data.

The basic structure of python list is:

python list structure

From the structure we can find:

Python list will save several elements in it, these elements are ranked one by one.

To understand python list clearly, you should know these question one by one.

Basic Operations

Advanced Operations

  • How to merge several python lists to a big list?
  • How to split a python list to several lists?