查看: 333|回复: 0

绿黄红

[复制链接]

237

主题

314

帖子

2万

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
21620
发表于 2022-7-12 00:39:43 | 显示全部楼层 |阅读模式
[Python] 纯文本查看 复制代码
import turtle as t
t.penup()
t.goto(-150, -50)
t.pendown()
t.fillcolor('green')
t.begin_fill()
t.circle(50)
t.end_fill()

t.penup()
t.goto(0, -50)
t.pendown()
t.fillcolor('yellow')
t.begin_fill()
t.circle(50)
t.end_fill()

t.penup()
t.goto(150, -50)
t.pendown()
t.fillcolor('red')
t.begin_fill()
t.circle(50)
t.end_fill()
t.done()

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

快速回复 返回顶部 返回列表