vote up 15 vote down star
12

I want to print in the terminal with colors ? how can I do that in python ?

Another questions what is the best character that when it is printed it look like a box [brick] ?

I want to print colored blocks, it is part of game :)

flag
You should specify some additional information in order to get better responses: multiplatform? are external modules accepted? – Sorin Sbarnea Aug 26 at 18:40

11 Answers

vote up 19 vote down

This somewhat depends on what platform you are on. The most common way to do this is by printing ANSI escape sequences. For a simple example, here's some python code from the blender build scripts:

class bcolors:
    HEADER = '\033[95m'
    OKBLUE = '\033[94m'
    OKGREEN = '\033[92m'
    WARNING = '\033[93m'
    FAIL = '\033[91m'
    ENDC = '\033[0m'

    def disable(self):
        self.HEADER = ''
        self.OKBLUE = ''
        self.OKGREEN = ''
        self.WARNING = ''
        self.FAIL = ''
        self.ENDC = ''

To use code like this, you can do something like

print bcolors.WARNING + "Warning: No active frommets remain. Continue?" 
      + bcolors.ENDC

This will work on unix, linux including macOS, and window (provided you enable ansi.sys). There are ansi codes for setting the color, moving the cursor, and more.

If you are going to get complicated with this (and it sounds like you are if you are writing a game), you should look into the "curses" module, which handles a lot of the complicated parts of this for you. The Python Curses HowTO is a good introduction.

If you are not using extended ASCII (i.e. not on a PC), you are stuck with the ascii characters below 127, and '#' or '@' is probably your best bet for a block. If you can ensure your terminal is using a IBM extended ascii character set, you have many more options. Characters 176, 177, 178 and 219 are the "block characters".

Some modern text-based programs, such as "Dwarf Fortress", emulate text mode in a graphical mode, and use images of the classic PC font. You can find some of these bitmaps that you can use on the Dwarf Fortress Wiki see (user-made tilesets).

The Text Mode Demo Contest has more resources for doing graphics in text mode.

Hmm.. I think got a little carried away on this answer. I am in the midst of planning an epic text-based adventure game, though. Good luck with your colored text!

link|flag
vote up 5 vote down

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)
link|flag
Doesn't work on Windows. – Sorin Sbarnea Aug 27 at 10:01
vote up 4 vote down

For windows you cannot print to console with colors unless your using the win32api.

For linux its as simple as using print, with the escape sequences outlined here:

Colors

For the characther to print like a box, it really depends on what font you are using for the console window. The pound symbol works well, but it depends on the font:

#
link|flag
vote up 4 vote down

You want to learn about ANSI escape sequences. Here's a brief example:

CSI="\x1B["
reset=CSI+"m"
print CSI+"31;40m" + "Colored Text" + CSI + "0m"

For more info see http://en.wikipedia.org/wiki/ANSI_escape_code

For a block character, try a unicode character like \u2588:

print u"\u2588"

Putting it all together:

print CSI+"31;40m" + u"\u2588" + CSI + "0m"
link|flag
vote up 3 vote down

If you are programming a game you may would like to change the background color and use spaces only :)

you may try something like

print " "+ "\033[01;41m" + " " +"\033[01;46m" + " " + "\033[01;42m"

link|flag
vote up 3 vote down

On Windows you can use module 'win32console' (available in some Python distributions) or module 'ctypes' (Python 2.5 and up) to access the Win32 API.

To see complete code that supports both ways, see the color console reporting code from Testoob.

ctypes example:

import ctypes

# Constants from the Windows API
STD_OUTPUT_HANDLE = -11
FOREGROUND_RED    = 0x0004 # text color contains red.

def get_csbi_attributes(handle):
    # Based on IPython's winconsole.py, written by Alexander Belchenko
    import struct
    csbi = ctypes.create_string_buffer(22)
    res = ctypes.windll.kernel32.GetConsoleScreenBufferInfo(handle, csbi)
    assert res

    (bufx, bufy, curx, cury, wattr,
    left, top, right, bottom, maxx, maxy) = struct.unpack("hhhhHhhhhhh", csbi.raw)
    return wattr


handle = ctypes.windll.kernel32.GetStdHandle(STD_OUTPUT_HANDLE)
reset = get_csbi_attributes(handle)

ctypes.windll.kernel32.SetConsoleTextAttribute(handle, FOREGROUND_RED)
print "Cherry on top"
ctypes.windll.kernel32.SetConsoleTextAttribute(handle, reset)
link|flag
ctypes was the key for me - on Windows.. Thx. – bambuska Oct 28 at 9:27
vote up 3 vote down

I'm surprised no one has mentioned the Python termcolor module. Usage is pretty simple:

from termcolor import colored

print colored('hello', 'red'), colored('world', 'green')

It may not be sophisticated enough, however, for game programming and the "colored blocks" that you want to do...

link|flag
Does this work on Windows? – molasses Nov 26 '08 at 2:26
I didn't know about this before, thanks a lot! – Justin Poliey Jun 18 at 8:37
Just a remark: its license is GPL and this may not be suitable for lots of Python projects including open-source ones. Also it just do not work under Windows. – Sorin Sbarnea Aug 27 at 10:00
Yeah - doesn't work on Windows... – bambuska Oct 28 at 9:13
vote up 1 vote down

For the characters

Your terminal most probably uses Unicode (typically UTF-8 encoded) characters, so it's only a matter of the appropriate font selection to see your favorite character. Unicode char U+2588, "Full block" is the one I would suggest you use.

Try the following:

import unicodedata
fp= open("character_list", "w")
for index in xrange(65536):
    char= unichr(index)
    try: its_name= unicodedata.name(char)
    except ValueError: its_name= "N/A"
    fp.write("%05d %04x %s %s\n" % (index, index, char.encode("UTF-8"), its_name)
fp.close()

Examine the file later with your favourite viewer.

For the colors

curses is the module you want to use. Check this tutorial.

link|flag
vote up 1 vote down

Here's a curses example:

import curses

def main(stdscr):
    stdscr.clear()
    if curses.has_colors():
        for i in xrange(1, curses.COLORS):
            curses.init_pair(i, i, curses.COLOR_BLACK)
            stdscr.addstr("COLOR %d! " % i, curses.color_pair(i))
            stdscr.addstr("BOLD! ", curses.color_pair(i) | curses.A_BOLD)
            stdscr.addstr("STANDOUT! ", curses.color_pair(i) | curses.A_STANDOUT)
            stdscr.addstr("UNDERLINE! ", curses.color_pair(i) | curses.A_UNDERLINE)
            stdscr.addstr("BLINK! ", curses.color_pair(i) | curses.A_BLINK)
            stdscr.addstr("DIM! ", curses.color_pair(i) | curses.A_DIM)
            stdscr.addstr("REVERSE! ", curses.color_pair(i) | curses.A_REVERSE)
    stdscr.refresh()
    stdscr.getch()

if __name__ == '__main__':
    print "init..."
    curses.wrapper(main)
link|flag
Your code does fail under Windows (x64) with this error: AttributeError: 'module' object has no attribute 'wrapper' – Sorin Sbarnea Aug 25 at 16:51
@Sorin Sbarnea: Accordingly to python curses official documentation in docs.python.org/library/curses.html , the curses module is not supported on windows. Maybe you got this error instead of "No Such Module" or something like this, because you probably named your test file "curses.py" so it is importing itself. – nosklo Aug 25 at 19:12
vote up 0 vote down

There's also a module called WConIO that does much the same thing. Unfortunately the author will probably not be able to build a Python 2.6 version any time soon.

link|flag
vote up -4 vote down

How about this

link|flag
how about stopping spaming? – SilentGhost May 1 at 8:15
What do you mean "spaming" ? What's wrong with this recipe ? – dugres May 1 at 8:20
Louis? long time no see. – SilentGhost May 1 at 11:37
That's not helping. – dugres May 1 at 13:33
it's just to show louis why it is spamming. – SilentGhost May 2 at 20:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.