猫史档案馆


求大师带飞,在线等。

用户:FSYZ_无名小卒FSYZ_无名小卒查看:1 回复:8 评论:1 创建时间:2020-07-03T15:45:28


找师傅,带带我,是可以教我的那种

 


回复

上一页1 页 / 共 1下一页
C本植物C本植物

我!emotion_雷电猴_举手

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()

点赞0


评论


SCS_user_eeomGbEeAfSCS_user_eeomGbEeAf

我来

点赞0


评论


GTUBGTUB

您好,看到了你在师徒广场发帖,我很高兴当您的师傅,如果您觉得我可以的话请您回帖我们私聊~谢谢emotion_编程猫_点赞

点赞0


评论


幻音阁梦煞幻音阁梦煞

我很愿意,编程猫的教程我全都有,每一个任务介绍,每一个任务讲解,每一个任务小结,我全都认真存了下来,我愿意当你的师傅

点赞0


评论


白篮白篮

我 

点赞0


评论


美队钢铁侠美队钢铁侠

我 

点赞0


评论


暂退_Kevin_Lan暂退_Kevin_Lan

本人会做3D作品,看你愿不愿意学了,详见个人中心

点赞0


评论


ChyEitaChyEita

您是宋同学吗

点赞0


评论