端午节粽子代码(python)需要的拿走,顺带给博主一点关注呗~~~~

本文展示了如何使用Python的turtle模块来绘制粽子图形,以及一个盘子,作为端午节的庆祝插图。程序定义了两个函数,rice_dumpling()用于画粽子,plate()用于画盘子,并通过move()和word()函数调整位置和添加文字祝福。
摘要由CSDN通过智能技术生成
import math
from turtle import *
#胡阳
# 画粽子
def rice_dumpling():
    pensize(4) # 画笔宽度
    pencolor(4, 60, 12) # 画笔颜色
    fillcolor(4, 70, 19) # 填充色
    begin_fill()
    fd(200) # 向前
    circle(15, 120) #画圆弧
    fd(200)
    circle(15, 120)
    fd(200)
    circle(15, 120)
    fd(200)
    circle(15, 60)
    fd(100)
    circle(15, 90)
    fd(173)
    circle(1, 90)
    end_fill()
    penup()
    fd(100)
    right(60)
    back(105)
    a = pos()
    pendown()
    color(60, 67, 0)
    fillcolor(85, 97, 9)
    begin_fill()
    fd(120)
    goto(a)
    penup()
    back(15)
    left(90)
    fd(20)
    right(90)
    pendown()
    fd(150)
    right(120)
    fd(24)
    right(60)
    fd(120)
    right(60)
    fd(24)
    end_fill()
    begin_fill()
    left(110)
    fd(65)
    left(100)
    fd(24)
    left(80)
    fd(50)
    end_fill()

# 画盘子
def plate(a, b, angle, steps, rotateAngle):
    minAngle = (2 * math.pi / 360) * angle / steps
    rotateAngle = rotateAngle / 360 * 2 * math.pi
    penup() # 起笔
    setpos(b * math.sin(rotateAngle), -b * math.cos(rotateAngle))
    pendown() # 落笔
    for i in range(steps):
        nextPoint = [a * math.sin((i + 1) * minAngle), -b * math.cos((i + 1) * minAngle)]
        nextPoint = [nextPoint[0] * math.cos(rotateAngle) - nextPoint[1] * math.sin(rotateAngle),
                     nextPoint[0] * math.sin(rotateAngle) + nextPoint[1] * math.cos(rotateAngle)]
        setpos(nextPoint)

# 移动
def move(x, y):
    penup() # 起笔
    setpos(x, y) # 画笔位置
    pendown() # 落笔

# 祝福
def word():
    write("胡阳:祝大家端午安康!", move=False, align="center", font=("Comic Sans", 20, "bold"))

if __name__ == '__main__':
    colormode(255) # 颜色模式
    hideturtle() # 隐藏画笔
    fillcolor(153, 229, 153)
    begin_fill()
    plate(300, 200, 360, 300, 0)
    end_fill()
    move(40, -50)
    rice_dumpling()
    move(20, 100)
    rice_dumpling()
    move(-50, -70)
    rice_dumpling()
    move(10, 150)
    word()
    done()

 

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

人间打气筒(Ada)

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

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

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

打赏作者

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

抵扣说明:

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

余额充值