page contents

用Python画圣诞树代码

本文讲述了用python画圣诞树代码!具有很好的参考价值,希望对大家有所帮助。一起跟随六星小编过来看看吧,具体如下:

attachments-2022-12-aVML23Sj6393e58778fbe.jpg本文讲述了用python画圣诞树代码!具有很好的参考价值,希望对大家有所帮助。一起跟随六星小编过来看看吧,具体如下:

python圣诞树代码

1、简单的绘制圣诞树

新建tree1.py或者直接输入下面代码运行

#声明树的高度

height = 5

#树的雪花数,初始为1

stars = 1

#以数的高度作为循环次数

  

for i in range(height):

    print((' ' * (height - i)) + ('*' * stars))

    stars += 2

#输出树干

print((' ' * height) + '|')

attachments-2022-12-2SVpHIaO6393e362ad559.jpg

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

运行:

attachments-2022-12-6boPJKs16393e3895501e.jpg

3、使用Turtle绘制复杂圣诞树

新建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('tomato')

    else:

        color('wheat')

    circle(2)

    up()

    backward(a)

    right(90)

    backward(b)

time.sleep(60)

运行:

attachments-2022-12-0LHkDoww6393e3c1bb684.jpg

更多相关技术内容咨询欢迎前往并持续关注六星社区了解详情。

想高效系统的学习Python编程语言,推荐大家关注一个微信公众号:Python编程学习圈。每天分享行业资讯、技术干货供大家阅读,关注即可免费领取整套Python入门到进阶的学习资料以及教程,感兴趣的小伙伴赶紧行动起来吧。

attachments-2022-05-rLS4AIF8628ee5f3b7e12.jpg

  • 发表于 2022-12-10 09:49
  • 阅读 ( 546 )
  • 分类:Python开发

你可能感兴趣的文章

相关问题

0 条评论

请先 登录 后评论
王昭君
王昭君

209 篇文章

作家榜 »

  1. 轩辕小不懂 2403 文章
  2. 小柒 1312 文章
  3. Pack 1135 文章
  4. Nen 576 文章
  5. 王昭君 209 文章
  6. 文双 71 文章
  7. 小威 64 文章
  8. Cara 36 文章