python turtle画一朵花
时间: 2023-05-28 19:06:04 浏览: 117
以下是Python Turtle画一朵花的代码:
```python
import turtle
# 设置画布大小和背景颜色
turtle.setup(800, 600)
turtle.bgcolor("white")
# 画花瓣的函数
def petal(color, angle):
turtle.fillcolor(color)
turtle.begin_fill()
turtle.circle(80, angle)
turtle.left(180 - angle)
turtle.circle(80, angle)
turtle.end_fill()
turtle.left(180 - angle)
# 画花的中心
turtle.penup()
turtle.goto(0, 0)
turtle.pendown()
turtle.fillcolor("yellow")
turtle.begin_fill()
turtle.circle(20)
turtle.end_fill()
# 画花瓣
turtle.penup()
turtle.goto(0, 80)
turtle.pendown()
petal("red", 70)
petal("orange", 60)
petal("yellow", 50)
petal("green", 40)
petal("blue", 30)
petal("purple", 20)
# 隐藏画笔
turtle.hideturtle()
# 完成画图
turtle.done()
```
运行代码后,将会弹出一个窗口,显示Python Turtle画的一朵花。
阅读全文