圣诞将至:python3几行代码教你写出圣诞树。

今天咱们用python写个圣诞树玩玩
效果图:
在这里插入图片描述
源代码

# -----文件描述脚本------
# creatorName : 'ZiChen_Jiang'
# fileName : 'Christmas-python'
# createTime : '2021/12/20 09:24'
# Project introduction : 'Python3.9 构建的圣诞树解释文件'
# 执行命令 : python3 main.py
# ------文件描述脚本------

# 版本一
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()


# 版本二
# 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)
  • 4
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

江一铭

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值