Python Turtle, draw text with on screen with larger font

后端 未结 3 2009
忘掉有多难
忘掉有多难 2021-01-04 04:47

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

3条回答
  •  孤城傲影
    2021-01-04 05:14

    To add bold, italic and underline, just add the following to the font argument:

    font=("Arial", 8, 'normal', 'bold', 'italic', 'underline')

提交回复
热议问题