猫史档案馆


【Python作品分享】新的作品-26【作业帖】

用户:凚离29凚离29查看:0 回复:1 评论:0 创建时间:2021-09-05T12:31:48


【作品展示】

center_image

 

【作品介绍】

多彩繁星哦😄

(总之很累)

 

【作品源代码】

import turtle as t
import random
t.pensize(1)
t.speed(100)
t.fillcolor('#010d19')
t.penup()
t.goto(-300, -300)
t.pendown()
t.begin_fill()
for i in range(4):
    t.forward(600)
    t.left(90)
t.end_fill()
for i in range(250):
    c=random.randint(1,3)
    r = random.uniform(0, 1)
    g = random.uniform(0, 1)
    b = random.uniform(0, 1)
    x=random.randint(-295,295)
    y=random.randint(-295, 295)
    t.pencolor(r, g, b)
    t.pensize(c)
    t.forward(0.1)
    t.penup()
    t.goto(x,y)
    t.pendown()
t.hideturtle()
t.done()

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
Python-happyyyyPython-happyyyy

Mac好评

点赞0


评论