-2

I'm wondering if there are any functions that can allow me to draw words in turtle in any font?

Pika Supports Ukraine
  • 3,612
  • 10
  • 26
  • 42
Tiron4
  • 1

1 Answers1

0

You can use turtle.write with the font argument, as shown here. For example:

turtle.write("Hello, world!", font=("Ariel", 20, "italic"))

The first element of the tuple passed for font is the font's name, the second argument is the size, and the third argument is whether it is bold, normal, or italic.

Pika Supports Ukraine
  • 3,612
  • 10
  • 26
  • 42