Imprimer audacieux python
print('\033[1m' + 'Text' + '\033[0m')
Kind Kangaroo
print('\033[1m' + 'Text' + '\033[0m')
bolded_string = "\033[1m" + a_string + "\033[0m"
# print underline text in python
print("\033[4m"+ "YourText" + "\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'))