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 :)
feedback
|
|
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:
To use code like this, you can do something like
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! | |||||||||||||||
feedback
|
|
I'm surprised no one has mentioned the Python termcolor module. Usage is pretty simple:
It may not be sophisticated enough, however, for game programming and the "colored blocks" that you want to do... | |||||||||||||||||
feedback
|
|
the answer is http://pypi.python.org/pypi/colorama for all cross-platform coloring in python | |||||||||||
feedback
|
|
You want to learn about ANSI escape sequences. Here's a brief example:
For more info see http://en.wikipedia.org/wiki/ANSI_escape_code For a block character, try a unicode character like \u2588:
Putting it all together:
| |||
|
feedback
|
|
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:
| |||
|
feedback
|
|
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: 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:
| |||
|
feedback
|
|
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:
| |||||
feedback
|
|
Here's a curses example:
| |||||||
feedback
|
|
My favorite way is with the Blessings library (full disclosure: I wrote it). For example:
To print colored bricks, the most reliable way is to print spaces with background colors. I use this technique to draw the progress bar in nose-progressive:
You can print in specific locations as well:
If you have to muck with other terminal capabilities in the course of your game, you can do that as well. You can use Python's standard string formatting to keep it readable:
The nice thing about Blessings is that it does its best to work on all sorts of terminals, not just the (overwhelmingly common) ANSI-color ones. It also keeps unreadable escape sequences out of your code while remaining concise to use. Have fun! | |||
|
feedback
|
|
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" | |||
|
feedback
|
|
I wrote a simple module, available at: http://pypi.python.org/pypi/colorconsole It works with Windows, Mac OS X and Linux. It uses ANSI for Linux and Mac, but native calls to console functions on Windows. You have colors, cursor positioning and keyboard input. It is not a replacement for curses, but can be very useful if you need to use in simple scripts or ASCII games. | |||
|
feedback
|
|
For teh Google: now there is CLINT.
| |||
|
feedback
|
For the charactersYour 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:
Examine the file later with your favourite viewer. For the colors | ||||
|
feedback
|
|
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. | |||
|
feedback
|
|
How about this | |||||||||||||
feedback
|
|
Go to http://en.wikipedia.org/wiki/List_of_Unicode_characters#Block_elements There is a list of block elements(It requires Unicode). Or use ascii character 24 or 26. | ||||
|
feedback
|