猫史档案馆


【Python作品分享】七彩八边形【教程贴】

用户:飞翔到云间飞翔到云间查看:0 回复:0 评论:0 创建时间:2020-02-22T19:17:56


【作品展示】

center_image

 

【作品介绍】

 

【作品源代码】

import turtle
import time


# 海龟作图

t = turtle.Pen()
colors = ['red', 'black', 'blue', 'green', 'yellow', 'pink', 'purple', 'orange']
for i in colors:
    t.pencolor(i)
    t.forward(200)
    t.left(45)
time.sleep(1)
turtle.bgcolor(colors[0])
time.sleep(1)
turtle.bgcolor(colors[1])
time.sleep(1)
turtle.bgcolor(colors[2])
time.sleep(1)
turtle.bgcolor(colors[3])
time.sleep(1)
turtle.bgcolor(colors[4])
time.sleep(1)
turtle.bgcolor(colors[5])
time.sleep(1)
turtle.bgcolor(colors[6])
time.sleep(1)
turtle.bgcolor(colors[7])
time.sleep(1)
print('Hello')

 

【提示】

部分含有Python第三方库相关内容的作品,在海龟编辑器网页端无法运行哦!如遇到这种情况,可以打开下面的链接,下载海龟编辑器客户端:

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页