simple colours python
pip install simple-colors
from simple_colors import *
print(green('hello'))
print(green('hello', 'bold'))
print(green('hello', ['bold', 'underlined']))
simple colours python
pip install simple-colors
from simple_colors import *
print(green('hello'))
print(green('hello', 'bold'))
print(green('hello', ['bold', 'underlined']))
python color
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us