猫史档案馆


【Python作品分享】视觉秀【作品秀】

用户:JackmR8ZJackmR8Z查看:0 回复:1 评论:0 创建时间:2020-04-12T13:07:21


【作品展示】

center_image

 

【作品介绍】

好看不?

代码在下面⬇⬇⬇

 

【作品源代码】

import turtle
import time

__Pen = turtle.Pen()


#开始进入Python的世界
for __count in range(40):
    __Pen.hideturtle()
    __Pen.pencolor("#33ff33")
    __Pen.penup()
    __Pen.forward(1)
    __Pen.pendown()
    __Pen.speed(30)
    __Pen.circle(100)
    __Pen.right(40)
    __Pen.circle(30, steps=2)
    __Pen.pencolor("#6633ff")
    __Pen.circle(40, steps=4)
    __Pen.pencolor("#ffccff")
    __Pen.circle(50, steps=5)
    __Pen.pencolor("#3366ff")
    __Pen.circle(60, steps=6)
    __Pen.pencolor("#33ff33")
    __Pen.circle(70, steps=7)
    __Pen.pencolor("#ff0000")
    __Pen.circle(90, steps=9)
time.sleep(20)

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
我是曲奇饼干我是曲奇饼干

看到了_Pen和#开始进入python的世界就知道你是用图形化转的

点赞0


评论