how to print in different colors in python code example
Example 1: 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}")
Example 2: how to color print in python
from termcolor import cprint
cprint('Hello, World! In yellow highlighted in red!', 'yellow', 'on_red')
cprint('Hello, World! Underlined in red!', 'red', attrs=["underline"])
Example 3: python colored text in console
print(f"{bcolors.WARNING}Warning: No active frommets remain. Continue?{bcolors.ENDC}")