首頁  >  文章  >  後端開發  >  利用python怎麼繪製聖誕樹? (代碼詳解)

利用python怎麼繪製聖誕樹? (代碼詳解)

angryTom
angryTom轉載
2020-02-13 09:56:54101217瀏覽

利用python怎麼畫聖誕樹?這篇文章就來跟大家分享利用python繪製聖誕樹的幾種方法,並附上python聖誕樹程式碼和運行效果圖,希望對大家有幫助。

利用python怎麼繪製聖誕樹? (代碼詳解)

python聖誕樹程式碼   

1、簡單的繪製聖誕樹

新建tree1.py或者直接輸入下面程式碼運行(推薦學習:Python影片教學

#声明树的高度
height = 5
#树的雪花数,初始为1
stars = 1
#以数的高度作为循环次数
 
for i in range(height):
    print((' ' * (height - i)) + ('*' * stars))
    stars += 2
#输出树干
print((' ' * height) + '|')

利用python怎麼繪製聖誕樹? (代碼詳解)

#2、使用turtle繪製簡單聖誕樹

#新tree2py,輸入以下程式碼

#导入turtle库
import turtle
#设置屏幕大小
screen = turtle.Screen()
screen.setup(800,600)
#获取画笔并设置一些属性:圆形、红色、快
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, 17):
    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 += 2
    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(17,20):
    y = 30*i
    for j in range(3):
        x = 30*j
        square.goto(x,-y+280)
        square.stamp()
        square.goto(-x,-y+280)
        square.stamp()
turtle.exitonclick()

運行:

利用python怎麼繪製聖誕樹? (代碼詳解)

#關注微信公眾號:php中文網路課程,回覆sd聖誕節 即可取得更多聖誕節特效程式碼!

(微信掃一掃)

#3、使用Turtle繪製複雜聖誕樹

利用python怎麼繪製聖誕樹? (代碼詳解)

############################ #####新建tree3.py,輸入以下程式碼###
#导入所依赖的库
from turtle import *
import random
import time
 
n = 80.0
#设置速度快
speed("fastest")
#背景颜色 海贝壳色,偏粉色
screensize(bg='seashell')
left(90)
forward(3*n)
color("orange", "yellow")
begin_fill()
left(126)
 
for i in range(5):
    forward(n/5)
    right(144)
    forward(n/5)
    left(72)
end_fill()
right(126)
 
color("dark green")
backward(n*4.8)
def tree(d, s):
    if d <= 0: return
    forward(s)
    tree(d-1, s*.8)
    right(120)
    tree(d-3, s*.5)
    right(120)
    tree(d-3, s*.5)
    right(120)
    backward(s)
tree(15, n)
backward(n/2)
 
for i in range(200):
    a = 200 - 400 * random.random()
    b = 10 - 20 * random.random()
    up()
    forward(b)
    left(90)
    forward(a)
    down()
    if random.randint(0, 1) == 0:
            color(&#39;tomato&#39;)
    else:
        color(&#39;wheat&#39;)
    circle(2)
    up()
    backward(a)
    right(90)
    backward(b)
time.sleep(60)
###執行:################推薦學習:###python教學##### #

以上是利用python怎麼繪製聖誕樹? (代碼詳解)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除