Answers for "color a text in 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

how to colour letters in python

print("yourtext") #If you print anything, as default you'll get white text and black background
print("33[{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("33[1;32;40m Bright Green  n")
Posted by: Guest on August-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language