注册账号-全站资源免费下载
您需要 登录 才可以下载或查看,没有账号?注册账号
x
[Python] 纯文本查看 复制代码 from turtle import *
pensize(1)
pencolor('red')
fillcolor('pink')
speed(5)
up()
goto(-30,100)
down()
begin_fill()
left(90)
circle(120,180)
circle(360,70)
left(38)
circle(360,70)
circle(120,180)
end_fill()
up()
goto(-100,-100)
down()
|