Answers for "python print differnet colors in console"

9

python color in console

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

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

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