1. Lists
Lists are created by having characters inside square brackets, separated by commas, with each value inside quotation marks
The code below also shows how to access items within a list
List rules
- Can only add a list to another list
- Can only use these *, + operators
Adding items to a list
using the .append() method
using the + operator
using the .extend() method
using the .insert() method
Removing items from a list
using the .remove() method
using the del
using the .pop() method
using the .clear() method
2. Tuples
Tuples are immutable i.e once created they cannot be changed
But they can be nested inside lists, where they are easily accessible using their index
3. Maps/Dictionary
A combination of tuples and lists that can be accessed with a key and a value.
Contains curly brackets , and the key-value pair is separated with a colon, and separated with single quotes
Cannot join maps with the '+' operator
Top comments (0)