In Python, you can sort a list using the `sort()` method or the `sorted()` function. Here's a brief overview of both methods:
### Using `sort()`
The `sort()` method sorts the list in place (i.e., it modifies the original list) and does not return a new list. It sorts the list in ascending order by default.
```python
# Example of using sort()
numbers = [5, 2, 9, 1, 5, 6]
numbers.sort()
print(numbers) # Output: [1, 2, 5, 5, 6, 9]
```
You can