Variable de texte en gras dans Python
bolded_string = "\033[1m" + a_string + "\033[0m"
Proud Penguin
bolded_string = "\033[1m" + a_string + "\033[0m"
class color:
BOLD = '\033[1m'
END = '\033[0m'
print(color.BOLD + 'Hello World !' + color.END)
from simple_colors import *
print(green('hello', 'bold'))