Vincent Gulinao wrote: > > Anyone knows a neat way of displaying output in columnar/tabular form? > > Say you have a list with both dictionary and string members; you want > to print the data, dictionary being one element per line, and the > string on the next "column" aligned on the first element of the > dictionary, or something like that. >
You might like this recipe: http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/267662 Another option is to write an HTML file containing a table. Kent _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
