前言
之前學(xué)python時(shí)在網(wǎng)上找了好多小程序,由于年代久遠(yuǎn),已經(jīng)忘記出自哪里了,給代碼加了點(diǎn)注釋?zhuān)偕晕⑿薷牧艘幌?,讓代碼的可讀性更好,如有侵權(quán)立刻就刪~
引用本科老師的一句話(huà):“櫻花最美的時(shí)候有兩個(gè),一個(gè)是櫻花一半在空中,一半在樹(shù)上的時(shí)候,空間上的最美;另一個(gè)是你們這個(gè)年紀(jì)可以牽著喜歡的人一起去看的時(shí)候,意境上的最美?!?/p>
所以,我們接下來(lái)就要用python的turtle庫(kù)來(lái)完成一半空中,一半樹(shù)上的銀杏的繪畫(huà)~
import turtle import random from math import *
斐波那契數(shù)列是指前兩項(xiàng)的和加起來(lái)等于后一項(xiàng)的一個(gè)數(shù)列,例如[0 1 1 2 4 6 10],這里使用了兩個(gè)函數(shù)來(lái)生成斐波契那數(shù)列。
def Fibonacci_Recursion_tool(n): #斐波那契數(shù)列方法 if n = 0: return 0 elif n == 1: return 1 else: return Fibonacci_Recursion_tool(n - 1) + Fibonacci_Recursion_tool(n - 2) def Fibonacci_Recursion(n): #生成斐波那契數(shù)列,并存入列表 result_list = [] for i in range(1, n + 3): result_list.append(Fibonacci_Recursion_tool(i)) return result_list
調(diào)用函數(shù)生成一個(gè)數(shù)列如下:
yu = Fibonacci_Recursion(top) #生成斐波契那數(shù)列 print(yu)
運(yùn)行結(jié)果如下:
def leaf(x, y, node):#定義畫(huà)葉子的方法 til = turtle.heading() i = random.random() an = random.randint(10, 180) ye = random.randint(6, 9)/10 turtle.color(ye, ye*0.9, 0) turtle.fillcolor(ye+0.1, ye+0.05, 0) turtle.pensize(1) turtle.pendown() turtle.setheading(an + 90) turtle.forward(8*i) px = turtle.xcor() py = turtle.ycor() turtle.begin_fill() turtle.circle(7.5*i, 120) # 畫(huà)一段120度的弧線(xiàn) turtle.penup() # 抬起筆來(lái) turtle.goto(px, py) # 回到圓點(diǎn)位置 turtle.setheading(an + 90) # 向上畫(huà) turtle.pendown() # 落筆,開(kāi)始畫(huà) turtle.circle(-7.5*i, 120) # 畫(huà)一段120度的弧線(xiàn) turtle.setheading(an + 100) turtle.circle(10.5*i, 150) turtle.end_fill() # 畫(huà)一段150度的弧線(xiàn) turtle.penup() turtle.goto(x, y) turtle.setheading(til) turtle.pensize(node / 2 + 1)
這里用x生成隨機(jī)數(shù),用if條件進(jìn)行判斷來(lái)決定要不要繼續(xù)畫(huà)分支,要不要畫(huà)葉子,使樹(shù)更加自然,無(wú)規(guī)律性,更好看一點(diǎn),這樣會(huì)導(dǎo)致你每次運(yùn)行時(shí),畫(huà)出來(lái)的樹(shù)都是不一樣的。具體的細(xì)節(jié),我已經(jīng)加上了注釋。如果想調(diào)整空中葉子的比例,樹(shù)的分叉程度,修改if判斷語(yǔ)句中的x取值范圍,以增加概率或減小概率即可。至于如何達(dá)到你心中完美的效果就要慢慢去嘗試了。
def draw(node, length, level, yu, button): #定義畫(huà)樹(shù)的方法 turtle.pendown() t = cos(radians(turtle.heading()+5)) / 8 + 0.25 turtle.pencolor(t*1.6, t*1.2, t*1.4) #(r, g, b)顏色對(duì)應(yīng)的RGB值 turtle.pensize(node/1.2) #畫(huà)筆的尺寸 x = random.randint(0, 10) #生成隨機(jī)數(shù)決定要畫(huà)樹(shù)枝還是畫(huà)飄落的葉子 if level == top and x > 6: #此時(shí)畫(huà)飄落的葉子,x范圍太大會(huì)導(dǎo)致樹(shù)太禿 turtle.forward(length) # 畫(huà)樹(shù)枝 yu[level] = yu[level] - 1 c = random.randint(2, 10) for i in range(1, c): leaf(turtle.xcor(), turtle.ycor(), node) # 添加0.3倍的飄落葉子 if random.random() > 0.3: turtle.penup() # 飄落 t1 = turtle.heading() an1 = -40 + random.random() * 40 turtle.setheading(an1) dis = int(800 * random.random() * 0.5 + 400 * random.random() * 0.3 + 200 * random.random() * 0.2) turtle.forward(dis) turtle.setheading(t1) turtle.right(90) # 畫(huà)葉子 leaf(turtle.xcor(), turtle.ycor(), node) turtle.left(90) # 返回 t2 = turtle.heading() turtle.setheading(an1) turtle.backward(dis) turtle.setheading(t2) elif level==top and x 7 : #此時(shí)畫(huà)枝葉,x范圍太大會(huì)導(dǎo)致飄落的葉子太少 turtle.penup() turtle.forward(length) elif level>3 and (x>6) :#三級(jí)樹(shù)枝以上,有40%的概率執(zhí)行以下策略 turtle.pendown() turtle.forward(length) c = random.randint(4, 6) for i in range(3, c): leaf(turtle.xcor(), turtle.ycor(),node) leaf(turtle.xcor(), turtle.ycor(),node) button=1# jump""" else: turtle.forward(length) # 畫(huà)樹(shù)枝 yu[level] = yu[level] -1 if node > 0 and button == 0: # 計(jì)算右側(cè)分支偏轉(zhuǎn)角度,在固定角度偏轉(zhuǎn)增加一個(gè)隨機(jī)的偏移量 right = random.random() * 5 + 17 # 計(jì)算左側(cè)分支偏轉(zhuǎn)角度,在固定角度偏轉(zhuǎn)增加一個(gè)隨機(jī)的偏移量 left = random.random() * 20 + 19 # 計(jì)算下一級(jí)分支的長(zhǎng)度 child_length = length * (random.random() * 0.25 + 0.7) # 右轉(zhuǎn)一定角度,畫(huà)右分支 r=random.randint(0, 1) if r==1: turtle.right(right) level = level + 1 #print("level", level) else: turtle.left(right) level = level + 1 #print("level", level) draw(node - 1, child_length,level,yu,button) yu[level] = yu[level] +1 if yu[level] > 1: # 左轉(zhuǎn)一定角度,畫(huà)左分支 if r==1: turtle.left(right + left) draw(node - 1, child_length, level, yu,button) # 將偏轉(zhuǎn)的角度,轉(zhuǎn)回 turtle.right(left) yu[level] = yu[level] - 1 else: turtle.right(right + left) draw(node - 1, child_length, level, yu,button) # 將偏轉(zhuǎn)的角度,轉(zhuǎn)回 turtle.left(left) yu[level] = yu[level] - 1 else: if r==1: turtle.left(right + left) turtle.right(left) else: turtle.right(right + left) turtle.left(left) turtle.penup() #退回到上一級(jí)節(jié)點(diǎn)頂部位置 turtle.backward(length)
主函數(shù)中直接調(diào)用上述函數(shù)就行,top控制樹(shù)的高度,turtle.speed控制畫(huà)的速度,最后的turtle.write()用來(lái)書(shū)寫(xiě)最下方的簽名。
if __name__ == '__main__': turtle.setup(width=1.0, height=1.0) #設(shè)置全屏顯示 turtle.hideturtle() # 隱藏turtle turtle.speed(0) # 設(shè)置畫(huà)筆移動(dòng)的速度,0-10 值越小速度越快 # turtle.tracer(0,0) #設(shè)置動(dòng)畫(huà)的開(kāi)關(guān)和延遲,均為0 turtle.penup() # 抬起畫(huà)筆 turtle.left(90) # 默認(rèn)方向?yàn)槌痻軸的正方向,左轉(zhuǎn)90度則朝上 turtle.backward(300) # 設(shè)置turtle的位置,朝下移動(dòng)300 top = 9 #樹(shù)高 yu = Fibonacci_Recursion(top) #生成斐波契那數(shù)列 yu.remove(yu[0]) #print(yu) 打印斐波那契數(shù)列 button = 0 draw(top, 120, 0, yu, button) # 調(diào)用函數(shù)開(kāi)始繪制 turtle.write(" wsw", font=("微軟雅黑", 14, "normal")) #生成簽名 turtle.done()
運(yùn)行程序后,“海龜”會(huì)幫你畫(huà)出整棵樹(shù),你只需要看著它畫(huà)就行,需要等待一定的時(shí)間,畫(huà)的速度可以自己選擇,最后的一種成品如下,是想要的一半葉子在空中的感覺(jué)了,哈哈哈哈~
以上,就是這個(gè)小程序的全部?jī)?nèi)容了,雖然簡(jiǎn)單,但是還挺有意思的,快去給欣賞的那個(gè)ta畫(huà)棵樹(shù)吧~在最美的年紀(jì),與喜歡的人一起看花瓣在空中飛舞 ~
無(wú)用python小程序系列第一個(gè),后續(xù)會(huì)不定期更新,還有開(kāi)頭提到的那個(gè)小程序,自動(dòng)發(fā)送消息和溫馨提醒的,也勉強(qiáng)算是實(shí)現(xiàn)了吧,hhhh,完成了當(dāng)初學(xué)python的目的~這個(gè)程序其實(shí)也很簡(jiǎn)單,后面有時(shí)間會(huì)更新出來(lái)。
到此這篇關(guān)于python小程序之飄落的銀杏的文章就介紹到這了,希望對(duì)大家有幫助,更多相關(guān)python小程序內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持腳本之家!
標(biāo)簽:駐馬店 股票 江蘇 湖州 衡水 中山 畢節(jié) 呼和浩特
巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《python小程序之飄落的銀杏》,本文關(guān)鍵詞 python,小,程序,之,飄落,的,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。