Answers for "python print color windows"

0

python color text on windows

import termcolor
import os
os.system('color')
print(termcolor.colored("I want to help", "red"))
Posted by: Guest on October-15-2020
1

how to change the color of command prompt in python

import os
# To get all possible colors for the command line, open the command prompt
# and enter the command "color help"
os.system('color FF')
Posted by: Guest on May-13-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language