帮我用海龟绘图画一个rocket
时间: 2024-05-02 20:22:48 浏览: 98
好的,请稍等,我现在为您准备绘图。
请在您的Python环境中安装turtle库,然后将以下代码复制并粘贴到您的IDE中,运行即可看到火箭的绘制。
```
import turtle
rocket = turtle.Turtle()
rocket.speed(10)
# 绘制火箭身体
rocket.color('red','yellow')
rocket.begin_fill()
rocket.left(120)
rocket.forward(100)
rocket.circle(-50,240)
rocket.forward(100)
rocket.end_fill()
# 绘制火箭发射火焰
rocket.penup()
rocket.goto(20,-50)
rocket.color('yellow','red')
rocket.pendown()
rocket.begin_fill()
rocket.circle(20)
rocket.end_fill()
turtle.done()
```
希望这个回答对您有帮助呢!
阅读全文