• 大小: 0.96KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-05-10
  • 语言: Python
  • 标签: python  彩色  py  

资源简介


资源截图

代码片段和文件信息

import turtle as t
colors = [‘red‘‘purple‘‘blue‘‘green‘‘yellow‘‘orange‘]



t.up()
t.goto(00)
t.down()
for x in range(6):
    t.forward(50)
    t.left(60)


t.right(120)
t.begin_fill()
t.fillcolor(colors[0])
t.pencolor(colors[0])
for x in range(6):
    t.forward(50)
    t.left(60)
t.end_fill()

t.begin_fill()
t.fillcolor(colors[1])
t.pencolor(colors[1])
for x in range(5):
    t.forward(50)
    t.right(60)
t.end_fill()

t.right(120)
t.begin_fill()
t.fillcolor(colors[2])
t.pencolor(co

评论

共有 条评论