Re: Colour of output text

2009-08-02 Thread Albert van der Horst
In article mailman.3163.1247670223.8015.python-l...@python.org, Jean-Michel Pichavant jeanmic...@sequans.com wrote: Nobody wrote: On Fri, 10 Jul 2009 09:23:54 +, garabik-news-2005-05 wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've

Re: Colour of output text

2009-07-15 Thread Jean-Michel Pichavant
Nobody wrote: On Fri, 10 Jul 2009 09:23:54 +, garabik-news-2005-05 wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've tried the following On Unix operating systems this would be done through the curses interface:

Re: Colour of output text

2009-07-15 Thread Nobody
On Wed, 15 Jul 2009 17:03:30 +0200, Jean-Michel Pichavant wrote: Hard-coding control/escape sequences is just lame. Use the curses modules to obtain the correct sequences for the terminal. As the OP I'm really interested in doing so. I currently have all my colors hard-coded. Now It

Re: Colour of output text

2009-07-11 Thread Nobody
On Fri, 10 Jul 2009 09:23:54 +, garabik-news-2005-05 wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've tried the following On Unix operating systems this would be done through the curses interface:

Re: Colour of output text

2009-07-10 Thread garabik-news-2005-05
Tim Harig user...@ilthio.net wrote: On 2009-07-09, Alex Rosslyn black.line...@gmail.com wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've tried the following On Unix operating systems this would be done through the curses interface:

Re: Colour of output text

2009-07-10 Thread Tim Harig
On 2009-07-10, garabik-news-2005...@kassiopeia.juls.savba.sk garabik-news-2005...@kassiopeia.juls.savba.sk wrote: Tim Harig user...@ilthio.net wrote: On 2009-07-09, Alex Rosslyn black.line...@gmail.com wrote: I would like to learn a way of changing the colour of a particular part of the

Re: Colour of output text

2009-07-10 Thread Chris Rebert
On Fri, Jul 10, 2009 at 2:23 AM, garabik-news-2005...@kassiopeia.juls.savba.sk wrote: Tim Harig user...@ilthio.net wrote: On 2009-07-09, Alex Rosslyn black.line...@gmail.com wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've tried the

Colour of output text

2009-07-09 Thread Alex Rosslyn
Hi, I would like to learn a way of changing the colour of a particular part of the output text. I've tried the following: import os os.system(color 17) print This should be white on blue But that command changes the colour of ALL the text and the whole background. What i'm trying to do is

Re: Colour of output text

2009-07-09 Thread Tim Harig
On 2009-07-09, Alex Rosslyn black.line...@gmail.com wrote: I would like to learn a way of changing the colour of a particular part of the output text. I've tried the following http://catb.org/esr/faqs/smart-questions.html import os os.system(color 17) print This should be white on blue I