Answers for "how to change the color of text in python output"

4

python print in color

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

print(f"{bcolors.WARNING}Warning: No active frommets remain. Continue?{bcolors.ENDC}")
Posted by: Guest on May-26-2021
1

change color in python

from colorama import *
# install with "pip install coloroma"
init(convert=True)

print(Fore.RED + 'Hello World!')
Posted by: Guest on April-13-2021

Code answers related to "how to change the color of text in python output"

Python Answers by Framework

Browse Popular Code Answers by Language