Answers for "change console text color python"

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
0

python colored text in console

print(f"{bcolors.WARNING}Warning: No active frommets remain. Continue?{bcolors.ENDC}")
Posted by: Guest on June-04-2020
0

print colored text to console python

colored = lambda r, g, b, txt : f"\033[38;2;{r};{g};{b}m{txt}\033[m"
Posted by: Guest on December-20-2020

Code answers related to "change console text color python"

Python Answers by Framework

Browse Popular Code Answers by Language