Python provides a variety of methods to manipulate lists. Below are several commonly used list methods, along with explanations and examples for each.
### 1. `append()`
Adds an item to the end of the list.
```python
fruits = ['apple', 'banana']
fruits.append('orange')
print(fruits) # Output: ['apple', 'banana', 'orange']
```
### 2. `extend()`
Extends the list by appending elements from another iterable (like another list).
```python
fruits =