Python: Print list of dicts as ascii table
Sometimes I want to print list of dicts as an ascii table, like this:
| Programming Language | Language Type | Years of Experience |
+----------------------+---------------+---------------------+
| python | script | 4 |
| php | script | 5 |
| java | compiled | 11 |
| assember | compiled | 15 |
I searched on Google - but without luck.

