猫史档案馆


【Python作品分享】尼克斯神域【作品秀】

用户:西上白鹭西上白鹭查看:0 回复:0 评论:0 创建时间:2022-12-16T21:15:48


【作品展示】

center_image

 

【作品介绍】

阿巴阿巴

 

【作品源代码】

import turtle
import random
import turtle as t
t.speed(0)

t.bgcolor('black')
t.shape("turtle")
t.fillcolor('pink')
a = random.uniform(0, 1)
b = random.uniform(0, 1)
c = random.uniform(0, 1)
x = random.uniform(-300, 300)
y = random.uniform(-300, 300)
n = random.uniform(1,2)
for i in range(500):
    t.pensize(n)
    t.penup()
    t.goto(x, y) 
    t.pendown()
    t.pencolor(a, b, c)
    t.forward(1)
    a = random.uniform(0, 1)
    b = random.uniform(0, 1)
    c = random.uniform(0, 1)
    x = random.uniform(-700, 700)
    y = random.uniform(-500, 500)
    n = random.uniform(1,3)
t.done()

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 0下一页