Python list is a basic data type, which is a good structure to save data.
The basic structure of python list is:
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
- How to create a python list to save an element?
- How to print all elements in a python list?
- How to check an element in a python list or not?
- How to add an element to a python list?
- How to remove an element from a python list?
- How to read an element from a python list?
Advanced Operations
- How to merge several python lists to a big list?
- How to split a python list to several lists?