Answers for "python print status with color"

4

how to color print in python

#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"])
Posted by: Guest on February-01-2021
3

python print color

# Python program to print 
# green text with red background 

#pip install termcolor
#pip install colorama
  
from colorama import init 
from termcolor import colored 
  
init() 
  
print(colored('Hello, World!', 'green', 'on_red'))
Posted by: Guest on January-15-2021

Code answers related to "python print status with color"

Python Answers by Framework

Browse Popular Code Answers by Language