In [[Python]], a list represents a single column of data.
### Defining a list
```python
myList = ['1', 'test', 'apple', '123 Hello Drive']
```
### Removing the last item from a list
```python
myList.pop()
```
### Clearing the list
```python
myList.clear()
```