猫史档案馆


【Python作品分享】无限不规则彩色五边形【作业帖】

用户:雾散了你走了雾散了你走了查看:5 回复:2 评论:5 创建时间:2023-02-04T09:21:09


【作品展示】

center_image

 

【作品介绍】

能让大家学会重复代码就是 True

 

【作品源代码】

import turtle
while True:
    turtle.pencolor("blue")
    turtle.forward(100)
    turtle.right(90)
    turtle.pencolor("pink")
    turtle.forward(100)
    turtle.right(90)
    turtle.pencolor("orange")
    turtle.forward(100)
    turtle.right(90)
    turtle.pencolor("red")
    turtle.forward(20)
    turtle.right(35)
    turtle.pencolor("purple")

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
蟒蛇喵蟒蛇喵

很好,你可以创建一个列表,再套一个for循环。

点赞1


评论


Python爱好者Python爱好者

while 1是什么?

点赞1


评论