LoginSignup
46
32

More than 5 years have passed since last update.

コンソールに色付きの出力をする方法

Last updated at Posted at 2016-03-26

以下を定義して、

bcolors
class pycolor:
    BLACK = '\033[30m'
    RED = '\033[31m'
    GREEN = '\033[32m'
    YELLOW = '\033[33m'
    BLUE = '\033[34m'
    PURPLE = '\033[35m'
    CYAN = '\033[36m'
    WHITE = '\033[37m'
    END = '\033[0m'
    BOLD = '\038[1m'
    UNDERLINE = '\033[4m'
    INVISIBLE = '\033[08m'
    REVERCE = '\033[07m'
main
print pycolor.RED + "RED TEXT" + pycolor.END

と実行すると

RED TEXT

と出力されます。
終わるときには pycolor.ENDをつけるのを忘れないで下さい。

46
32
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
46
32