Answers for "change the colour of text in python"

2

add colour to text in python

def colored(r, g, b, text):
    return "33[38;2;{};{};{}m{} 33[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

Code answers related to "change the colour of text in python"

Python Answers by Framework

Browse Popular Code Answers by Language