导入库
```python
import turtle
import random
import time
```
画蛋糕底座
```python
def draw_cake_base():
t = turtle.Turtle()
t.hideturtle()
t.speed(0)
t.fillcolor("FFE4E1")
t.begin_fill()
t.circle(100)
t.end_fill()
```
画奶油层
```python
def add_decorations():
t = turtle.Turtle()
t.hideturtle()
t.speed(0)
t.fillcolor("FFC0CB")
t.begin_fill()
t.circle(80)
t.end_fill()
```
添加装饰
```python
def add_decorations():
t = turtle.Turtle()
t.hideturtle()
t.speed(0)
colors = ["FF69B4", "87CEEB", "98FB98"]
for _ in range(8):
t.penup()
angle = random.randint(0, 360)
t.setheading(angle)
t.forward(60)
t.fillcolor(random.choice(colors))
t.begin_fill()
for _ in range(5):
t.forward(15)
t.right(144)
t.end_fill()
```
主程序
```python
if __name__ == "__main__":
draw_cake_base()
add_decorations()
turtle.done()
```
将以上代码保存为一个Python文件(例如:`draw_cake.py`),然后运行它,你将看到一个简单的蛋糕图形。你可以根据需要调整颜色、形状和装饰物来制作更复杂的蛋糕。