【Python turtle】使用turtle实现随机满天星星效果(完整代码+效果图)

  • Post author:
  • Post category:python


效果如图(可

自由/随机

调整

线条粗细、颜色、星星位置

等参数):

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

from turtle import *
import random

def cell(l1):
    down()
    for i in range(6):
        forward(l1)
        left(60)
        forward(l1)
        right(120)
    up()
    
t = 1
speed(10)

# The sky will full of stars
def lrk(l1,l2): 
    up()
    width(random.randint(1,4))
    colormode(255)
    color(random.randint(0,255),random.randint(0,255),random.randint(0,255))
    goto(random.randint(0,300),random.randint(0,300))
    cell(l1)
    global t
    t = not t
    if l1/3 < l2:
        return
    elif t == 1:
        l1 *= random.randint(1,2)
    else:
        l1 /= random.randint(1,4)
    lrk(l1,l2)

lrk(10,0.1) #testing
done()



版权声明:本文为RickieLim原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。