python3 turtle怎样打出斜着的文字
在python3中有一个turtle库,其中通过write函数可以在屏幕上打出一行字,请问怎样才能让这行字斜过来?python3 turtle帮助
https://docs.
测试代码:
程序代码:
from turtle import * t=Turtle() ht() up() write("test", False, align="center", font=("Arial", 18, "normal")) goto(0,-50) right(90) write("test", False, align="center", font=("Arial", 18, "normal"))
结果: