Answers for "how to change text color in python"

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
2

add colour to text in python

def colored(r, g, b, text):
    return "\033[38;2;{};{};{}m{} \033[38;2;255;255;255m".format(r, g, b, text)
  
text = 'Hello, World'
colored_text = colored(255, 0, 0, text)
print(colored_text)

#or

print(colored(255, 0, 0, 'Hello, World'))
Posted by: Guest on October-31-2020
1

change color in python

from colorama import *
# install with "pip install coloroma"
init(convert=True)

print(Fore.RED + 'Hello World!')
Posted by: Guest on April-13-2021
0

how to colour letters in python

print("yourtext") #If you print anything, as default you'll get white text and black background
print("\033[{effect};{textcolour};{textbackground}myourtext") #this won't actually work, you need to change the "{}" by a number
"effect: 0 = none, 1 = bold, 2 = underline"
"textcolour 30 = black, 31 = red, 32 = green, 33 = yellow, 34 = blue, 35 = purple, 36 = cyan, 37 = white."
"textbackground = the same + 10

"Example"
print("\033[1;32;40m Bright Green  \n")
Posted by: Guest on August-24-2021

Code answers related to "how to change text color in python"

Python Answers by Framework

Browse Popular Code Answers by Language