Table-like data structure in python

Viewed 5869

Is there a data-structure in Python that approximate the behavior of a database table?

My data looks like the following:

id | name | description

1 | test | this is a test

The closest I can get is to have a list of dictionaries, but I was wondering if there exists a specific data-structure for that purpose (that, for example, supports sorting or add).

4 Answers
Related