Posts

Showing posts from July, 2025

list

| Method | Description | Example | | ------------------ | ---------------------------------------------------------------------- | --------------------------- | | `append(x)` | Adds `x` to the end of the list | `list.append(100)` | | `insert(i, x)` | Inserts `x` at position `i` | `list.insert(1, 'hello')` | | `remove(x)` | Removes the **first occurrence** of `x` | `list.remove(4)` | | `pop([i])` | Removes and returns item at position `i` (last if `i` not given) | `list.pop()`, `list.pop(0)` | | `clear()` | Removes **all items** from the list | `list.clear()` | | `index(x)` | Returns the **index** of the first occurrence of `x` | `list.index(...