用python写一个画乌龟的程序
时间: 2023-11-26 12:05:24 浏览: 68
python海龟绘图实例教程
5星 · 资源好评率100%
好的,以下是用Python编写画乌龟程序的代码:
```
import turtle
# 创建画布
screen = turtle.Screen()
# 设置画布大小
screen.setup(width=600, height=600)
# 创建一个乌龟对象
t = turtle.Turtle()
# 上色
t.color("green", "yellow")
# 开始画画
t.begin_fill()
for i in range(4):
t.forward(100)
t.right(90)
t.end_fill()
# 隐藏乌龟
t.hideturtle()
# 更新画布
screen.update()
# 关闭画布
turtle.done()
```
希望能够帮到你!
阅读全文