python colored text
def colored(r, g, b, text):
return \033[38;2;{};{};{}m{} \033[38;2;255;255;255m.format(r, g, b, text)
text=Hello, World
colored_text = colored(255, 0, 0, text)
print(colored_text)
#or
print(colored(255, 0, 0, 'Hello, World'))
or
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})
or
'''
Install colorama by typing this in the terminal:
python -m pip install colorama
'''
# Importing Colorama
import colorama
from colorama import Fore
from colorama import Back
from colorama import Style
# Initialising Colorama (Important)
colorama.init(autoreset=True)
# Colored Text
print(f{Fore.RED}Red Text)
print(f{Fore.GREEN}Green Text)
print(f{Fore.YELLOW}Yellow Text)
print(f{Fore.BLUE}Blue Text)
print(f{Fore.MAGENTA}Magenta Text)
print(f{Fore.CYAN}Cyan Text)
print(f{Fore.WHITE}White Text)
# Backgrounds
print(f{Back.RED}Red Background)
print(f{Back.GREEN}Green Background)
print(f{Back.YELLOW}Yellow Background)
print(f{Back.BLUE}Blue Background)
print(f{Back.MAGENTA}Magenta Background)
print(f{Back.CYAN}Cyan Background)
print(f{Back.WHITE}White Background)
# Styles
print(f{Style.DIM}Dim Text)
print(f{Style.NORMAL}Normal Text)
print(f{Style.BRIGHT}Bright Text)
# Combining Colored Text, Backgrounds and Styles
print(f{Fore.GREEN}{Back.YELLOW}{Style.BRIGHT}Green Text - Yellow Background - Bright)
print(f{Fore.CYAN}{Back.WHITE}{Style.DIM}Cyan Text - White Background - Dim)
'''
Fore: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Back: BLACK, RED, GREEN, YELLOW, BLUE, MAGENTA, CYAN, WHITE, RESET.
Style: DIM, NORMAL, BRIGHT, RESET_ALL
'
OR
#pip install termcolor
from termcolor import cprint
cprint('Hello, World! In yellow highlighted in red!', 'yellow', 'on_red')
cprint('Hello, World! Underlined in red!', 'red', attrs=[underline])
or
from colorama import init, Fore, Back, Style
init()
print(normal)
print(Fore.LIGHTYELLOW + yellow + Fore.RESET)
print(Back.RED + red + Back.RESET)
print(Fore.YELLOW + Back.RED + both + Style.RESET_ALL)
print(normal again)
The possible colors are: BLACK, BLUE, CYAN, GREEN, LIGHTBLACK_EX,
LIGHTBLUE_EX, LIGHTCYAN_EX, LIGHTGREEN_EX, LIGHTMAGENTA_EX, LIGHTRED_EX,
LIGHTWHITE_EX, LIGHTYELLOW_EX, MAGENTA, RED, WHITE, YELLOW
or
import colorama
from colorama import Fore
print(Fore.RED + 'This text is red in color')
or