Simple library that creates a table for your data in python
Instructions:
- Create a header array
- Create a new table object and pass in the header array, this will generate the header and columns
- Add rows with the new_row(array) function and pass an array in containing the data for your row
- Print the table using the display_table() function