猫史档案馆


【Python作品分享】樱花树【作品秀】

用户:游侠已退游侠已退查看:0 回复:9 评论:0 创建时间:2020-04-01T15:40:12


【作品展示】

center_image

 

【作品介绍】

美丽的樱花树呀!

 

【作品源代码】

import time
import random
import turtle
import turtle as 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:
            # 赭(zhě)色
            t.color('sienna')
            # 6
            t.pensize((branch / 10))
        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.penup()
        t.backward(branch)
        t.pendown()

# 掉落的花瓣

def Petal(m, t):

    for i in range(m):
        a = (200 - 400 * (random.random()))
        b = (10 - 20 * (random.random()))
        t.penup()
        t.forward(b)
        t.left(90)
        t.forward(a)
        t.pendown()
        # 淡珊瑚色
        t.color('lightcoral')
        t.circle(1)
        t.penup()
        t.backward(a)
        t.right(90)
        t.backward(b)

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

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

 

【提示】

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

https://python.codemao.cn


回复

上一页1 页 / 共 1下一页
游侠已退游侠已退

呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵呵呵呵呵

点赞0


评论


游侠已退游侠已退

呵呵呵呵呵呵呵呵呵呵

点赞0


评论