用Python画动态圣诞树 学会了送给你女朋友呀~

圣诞节快到了,最近圣诞树的绘制图比较火热,也很漂亮,今天我就整理了一下源码,分享给大家(这些我都测试过,确实可以生成喔~)

动态生成圣诞树

效果图(这个是动态的):用Python画动态圣诞树 学会了送给你女朋友呀~_第1张图片

 

漂亮的圣诞树,可作为桌面装饰哦~


动态生成樱花

效果图(这个是动态的):最后代码已打包用Python画动态圣诞树 学会了送给你女朋友呀~_第2张图片

 

import turtle as T
import random
import time

# 画樱花的躯干(60,t)
def Tree(branch, t):
    time.sleep(0.0005)
    if branch > 3:
        if 8 <= branch <= 12:
            if random.randint(0, 2) == 0:
                t.color('snow')  # 白
            else:
                t.color('lightcoral')  # 淡珊瑚色
            t.pensize(branch / 3)
        elif branch < 8:
            if random.randint(0, 1) == 0:
                t.color('snow')
            else:
                t.color('lightcoral')  # 淡珊瑚色
            t.pensize(branch / 2)
        else:
            t.color('sienna')  # 赭(zhě)色
            t.pensize(branch / 10)  # 6
        t.forward(branch)
        a = 1.5 * random.random()
        t.right(20 * a)
        b = 1.5 * random.random()
        Tree(branch - 10 * b, t)
        t.left(40 * a)
        Tree(branch - 10 * b, t)
        t.right(20 * a)
        t.up()
        t.backward(branch)
        t.down()

# 掉落的花瓣
def Petal(m, t):
    for i in range(m):
        a = 200 - 400 * random.random()
        b = 10 - 20 * random.random()
        t.up()
        t.forward(b)
        t.left(90)
        t.forward(a)
        t.down()
        t.color('lightcoral')  # 淡珊瑚色
        t.circle(1)
        t.up()
        t.backward(a)
        t.right(90)
        t.backward(b)

# 绘图区域
t = T.Turtle()
# 画布大小
w = T.Screen()
t.hideturtle()  # 隐藏画笔
t.getscreen().tracer(5, 0)
w.screensize(bg='wheat')  # wheat小麦
t.left(90)
t.up()
t.backward(150)
t.down()
t.color('sienna')

# 画樱花的躯干
Tree(60, t)
# 掉落的花瓣
Petal(200, t)
w.exitonclick()

平面圣诞树

效果图:最后代码已打包用Python画动态圣诞树 学会了送给你女朋友呀~_第3张图片

 

import turtle
 
 
screen = turtle.Screen()
screen.setup(375, 700)
 
 
 
circle = turtle.Turtle()
circle.shape('circle')
circle.color('red')
circle.speed('fastest')
circle.up()
 
 
square = turtle.Turtle()
square.shape('square')
square.color('green')
square.speed('fastest')
square.up()
 
 
circle.goto(0, 280)
circle.stamp()
 
 
k = 0
for i in range(1, 13):
    y = 30 * i
    for j in range(i - k):
        x = 30 * j
        square.goto(x, -y + 280)
        square.stamp()
        square.goto(-x, -y + 280)
        square.stamp()
 
 
    if i % 4 == 0:
        x = 30 * (j + 1)
        circle.color('red')
        circle.goto(-x, -y + 280)
        circle.stamp()
        circle.goto(x, -y + 280)
        circle.stamp()
        k += 3
 
 
    if i % 4 == 3:
        x = 30 * (j + 1)
        circle.color('yellow')
        circle.goto(-x, -y + 280)
        circle.stamp()
        circle.goto(x, -y + 280)
        circle.stamp()
 
 
square.color('brown')
for i in range(13, 17):
    y = 30 * i
    for j in range(2):
        x = 30 * j
        square.goto(x, -y + 280)
        square.stamp()
        square.goto(-x, -y + 280)
        square.stamp()

代码打包好了(这里获取呀!!!)

福利获取icon-default.png?t=M85Bhttps://docs.qq.com/doc/DTHl4TFpDcUpqZ3lW

用Python画动态圣诞树 学会了送给你女朋友呀~_第4张图片

你可能感兴趣的:(python,开发语言)