My goal is to be able to change the default format when printing in Python.
With the following code, I can change color, bold and centering. I would also like to change the font size and even the font style but I don't know how.
from termcolor import colored
print(colored('Hello'.center(100), 'green', attrs=['bold']))
To add color, you can also use :
or :