I\'m using python turtle\'s write method to write text on the screen like this:
turtle.write(\"messi fan\")
The size of the font is too sma
To add bold, italic and underline, just add the following to the font argument:
font=("Arial", 8, 'normal', 'bold', 'italic', 'underline')