Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python cmd colors

from colorama import init
from colorama import Fore, Back, Style

init()

print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')
# or
print('33[31m' + 'some red text')
print('33[39m') # and reset to default color
Source by pypi.org #
 
PREVIOUS NEXT
Tagged: #python #cmd #colors
ADD COMMENT
Topic
Name
5+7 =