Answers for "print colors of cmap python"

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
-1

print with color python

print(f"{bcolors.WARNING}Warning: No active frommets remain. Continue?{bcolors.ENDC}")
Posted by: Guest on June-04-2020

Python Answers by Framework

Browse Popular Code Answers by Language