Answers for "enable colors in windows console python"

10

python color in console

class bcolors:
    HEADER = '33[95m'
    OKBLUE = '33[94m'
    OKGREEN = '33[92m'
    WARNING = '33[93m'
    FAIL = '33[91m'
    ENDC = '33[0m'
    BOLD = '33[1m'
    UNDERLINE = '33[4m'

print(f"{bcolors.WARNING}Error : Test message !{bcolors.ENDC}")
Posted by: Guest on June-05-2020
2

how to change the console background color in python

import os

os.system('color 8f')
Posted by: Guest on June-08-2021

Python Answers by Framework

Browse Popular Code Answers by Language