Often you'll have a table of data. You want to print it out as text, but aligned for readability. Here is a simple module to do that. I'll discuss the code below. First, we have format_num. This basically just adds commas to our numbers (we want it to be pretty, right?). import locale locale.setlocale(locale.LC_NUMERIC, "") [...]
