极品美女一区,亚洲中国最大av网站,日韩av大全,成a人片亚洲日本久久

python畫櫻花樹代碼 具體代碼介紹

1、python畫櫻花樹代碼為:

import turtle as T

import random

import time

2、# 畫櫻花的軀干(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()

3、# 掉落的花瓣

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

4、# 畫櫻花的軀干

Tree(60, t)

# 掉落的花瓣

Petal(200, t)

w.exitonclick()

主站蜘蛛池模板: 天峨县| 嵊州市| 桃园县| 东丰县| 日喀则市| 大港区| 顺平县| 长葛市| 盈江县| 高密市| 合江县| 阜阳市| 黄冈市| 临泉县| 佛学| 岢岚县| 秀山| 余庆县| 五华县| 新丰县| 青川县| 塘沽区| 睢宁县| 新乡县| 上林县| 榆社县| 崇仁县| 石门县| 土默特左旗| 新乐市| 仪征市| 永泰县| 吉水县| 上思县| 湖州市| 长垣县| 塔城市| 星座| 石泉县| 红桥区| 平湖市|