python粽子代码
时间: 2023-07-02 16:23:48 浏览: 92
以下是一个简单的 Python 粽子制作代码:
```python
def make_zongzi(filling, leaves):
print("开始制作粽子...")
print("将" + filling + "填入粽子中...")
print("用" + leaves + "叶包裹粽子...")
print("将粽子放入锅中煮熟...")
print("完成!享用美味的" + filling + "粽子吧!")
# 调用函数制作糯米和肉馅粽子
make_zongzi('糯米和肉馅', '粽叶')
```
在调用 make_zongzi() 函数时,需要传入两个参数:填充物和包裹粽子的叶子。运行代码后,会输出制作粽子的过程,最终输出制作完成的粽子。
相关问题
python 实现绘制粽子 源代码
以下是用 Python 实现绘制粽子的代码,您可以参考:
```python
from turtle import *
# 绘制粽子的函数
def draw_zongzi(length, width):
pendown()
seth(0)
fd(length)
seth(-120)
fd(width)
seth(120)
fd(width)
seth(0)
fd(length)
seth(-120)
fd(width)
seth(120)
fd(width)
penup()
# 设置画笔颜色和粗细
pensize(5)
pencolor("green")
# 绘制粽子
draw_zongzi(200, 100)
# 隐藏海龟
hideturtle()
done()
```
希望对您有帮助。
python端午节代码
Python 端午节代码可以使用 turtle 库来画一个粽子,代码如下:
import turtle
# 画粽子
def draw_zongzi():
turtle.penup()
turtle.goto(-50, 0)
turtle.pendown()
turtle.begin_fill()
turtle.color("green")
turtle.circle(50, steps=3)
turtle.end_fill()
turtle.penup()
turtle.goto(-25, -50)
turtle.pendown()
turtle.begin_fill()
turtle.color("yellow")
turtle.circle(25)
turtle.end_fill()
turtle.penup()
turtle.goto(-10, -40)
turtle.pendown()
turtle.begin_fill()
turtle.color("green")
turtle.circle(10)
turtle.end_fill()
turtle.penup()
turtle.goto(-20, -20)
turtle.pendown()
turtle.begin_fill()
turtle.color("yellow")
turtle.circle(20)
turtle.end_fill()
turtle.penup()
turtle.goto(0, 0)
turtle.pendown()
# 写祝福语
def write_blessing():
turtle.penup()
turtle.goto(0, -100)
turtle.write("祝大家端午安康", move=False, align="center", font=("Comic Sans", 18, "bold"))
# 主函数
def main():
turtle.speed(0)
draw_zongzi()
write_blessing()
turtle.done()
if __name__ == '__main__':
main()
此外,还可以使用 print() 函数来输出祝福语,代码如下:
print("祝大家2021年端午节快乐!")
阅读全文