I'm wondering if there are any functions that can allow me to draw words in turtle in any font?
Asked
Active
Viewed 94 times
1 Answers
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