机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
打字练习
Microbit
C++
在线答题
积分排行榜
活跃排行榜
网盘
积分
未登录
未登录
登录学习
作者:
张亦铭
更新时间:
2025-04-13 15:58
浏览:
69次
点赞:
2次
热度:
20
import turtle t = turtle.Pen() t.shape("turtle") t.speed(0.1) t.penup() t.right(90) t.forward(200) t.left(90) t.pendown() t.begin_fill() t.circle(200,180) t.circle(100,180) t.circle(-100,180) t.end_fill() t.circle(-200,180) t.right(90) t.penup() t.forward(200/3) t.pendown() t.left(90) t.fillcolor("white") t.begin_fill() t.circle(-200/3/2) t.end_fill() t.left(90) t.forward(200/3) t.left(90) t.circle(200,180) t.left(90) t.penup() t.pencolor("black") t.forward(200/3) t.pendown() t.left(90) t.fillcolor("black") t.begin_fill() t.circle(-200/3/2) t.end_fill() t.hideturtle()
点赞成功
分享作品
×