Pandas is a Python library that allows you to manipulate data in multi-dimensional data structures
```python
import numpy as np
import pandas as pd
objs = [
{
'Name': 'Max',
'Age': 24,
'Location': 'Austin, TX'
},
{
'Name': 'Drew',
'Age': 35,
'Location': 'Green Bay, WI'
},
{
'Name': 'Bob',
'Age': 55,
'Location': 'Atlanta, GA'
}
]
table = pd.DataFrame(objs)
```
The value of `table` in this context is the following:
| Age | Location | Name |
|-----|---------------|-------|
| 24 | Austin, TX | Max |
| 35 | Green Bay, WI | Drew |
| 55 | Atlanta, GA | Bob |