Answers for "how to change color of text python"

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

colored text in py

import colorama
from colorama import Fore

print(Fore.RED + 'This text is red in color')
Posted by: Guest on September-20-2021

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

Python Answers by Framework

Browse Popular Code Answers by Language