Is there a way to print string in colorful way with python?
For example, can I print some part of string red or something to a console? I use Mac OS X.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This works for linux consoles that support color:
Here is an example of using
colorstrto make a colorized logger:This example logs to both the console (
stderr) and a file (/tmp/test.log). The message to the console is colorized, but the output to the file is left plain.