注册 登录
编程论坛 Python论坛

python3 turtle怎样打出斜着的文字

carlgwq 发布于 2018-11-25 11:47, 6070 次点击
在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"))

结果:
只有本站会员才能查看附件,请 登录
0 回复
1