Reiter
This section is about list manipulation in Python. A list is the python equivalent of an array, but it is resizeable and can contain elements of differrent types. Here are shown different operations on the list such as :
- changing the value of a certain list element
- append , delete an element
- slicing etc..