python turtel字体
时间: 2023-04-08 09:04:19 浏览: 414
使用Python的turtle写字
可以使用turtle模块中的write函数来设置字体,例如:
import turtle
turtle.write("Hello, world!", font=("Arial", 16, "normal"))
这里使用了Arial字体,大小为16,样式为normal。你也可以使用其他字体,例如"Times New Roman"、"Courier New"等。
阅读全文