python灯笼形状
时间: 2023-12-17 13:29:12 浏览: 115
以下是使用Python的turtle库绘制灯笼形状的代码和效果图:
```python
import turtle
# 设置画笔
t = turtle.Pen()
t.pensize(5)
t.speed(10)
# 绘制灯笼
t.penup()
t.goto(0, -200)
t.pendown()
t.fillcolor("#FFD700")
t.begin_fill()
t.circle(200)
t.end_fill()
t.penup()
t.goto(0, 0)
t.pendown()
t.fillcolor("#DC143C")
t.begin_fill()
t.circle(150)
t.end_fill()
t.penup()
t.goto(0, 150)
t.pendown()
t.fillcolor("#FFFFFF")
t.begin_fill()
t.circle(100)
t.end_fill()
# 绘制灯笼上的装饰
t.penup()
t.goto(0, 150)
t.pendown()
t.pensize(2)
for i in range(4):
t.forward(100)
t.backward(100)
t.right(90)
t.penup()
t.goto(0, 50)
t.pendown()
t.fillcolor("#DC143C")
t.begin_fill()
t.circle(20)
t.end_fill()
# 隐藏画笔
t.hideturtle()
# 显示绘图窗口
turtle.done()
```
<img src="https://i.loli.net/2022/02/01/7JZzKvVQ6f5L8xS.png" alt="灯笼形状" width="400"/>
阅读全文