How can I output colored text to the terminal in Python?
You can use the Python implementation of the curses library: http://docs.python.org/library/curses.html
Also, run this and you'll find your box:
for i in range(255): print i, chr(i)