猫史档案馆


【Python作品分享】colourful roses for mom母亲节的彩色花朵【作业帖】

用户:tomatohackertomatohacker查看:1 回复:2 评论:1 创建时间:2022-05-06T14:54:27


【作品展示】

center_image

 

【作品介绍】

interesting game!

hope you like it!

----tomatohacker黑番茄客

 

【作品源代码】

import easygui
import turtle
import random


# 妈妈喵你哦。ALWAYS.
easygui.msgbox('Mom,I love you,forever.  And,roses are for you.')
t = turtle.Pen()
turtle.bgcolor("#009900")
colors = ['red', 'pink', '#cc66cc', '#ff6666', '#ffffcc']
for n in range(50):
    t.pencolor(random.choice(colors))
    size = random.randint(18, 30)
    x = random.randint((-300), 300)
    y = random.randint((-300), 300)
    t.penup()
    t.goto(x, y)
    t.pendown()
    for m in range(size):
        t.forward((m * 2))
        t.left(81)

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
Arc_Arc_

这个是我小号,以前用的,现在是我这个号。

点赞0


评论


Arc_Arc_

……为什么别人的帖子下面都有还多评论,但我没有!!! imgsrc="https://static.codemao.cn/emoji/codemao/%E7%BC%96%E7%A8%8B%E7%8C%AB_%E4%BC%A4%E5%BF%83.gif"alt="emotion_编程猫_伤心"

点赞0


评论