Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

colored text python

from colorama import init
from colorama import Fore
init()
print(Fore.BLUE + 'Hello')
print(Fore.RED + 'Hello')
print(Fore.YELLOW + 'Hello')
print(Fore.GREEN + 'Hello')
print(Fore.WHITE + 'Hello')

#test in vscode
#code by fawlid
 
PREVIOUS NEXT
Tagged: #colored #text #python
ADD COMMENT
Topic
Name
6+8 =