Blog
About
Posts with #terminal tag
Wed 31 December 2008
Colored Output in Console with Python
Playing around with ANSI in a color capable terminal. #!/usr/bin/env python import sys BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE = range(8) #following from Python cookbook, #475186 def...