python调用turtle(海龟画图),画一个正方形

调用海龟画图,画一个正方形

  • 方法一

#调用海龟画图
import turtle

bob = turtle.Turtle()
print(bob)
#定义画图的方向,此处画了一个直角
bob.fd(100)
bob.lt(90)
#加入以下步骤画了一个正方形
bob.fd(100)
bob.lt(90)
bob.fd(100)
bob.lt(90)
bob.fd(100)

#输出所画图形
turtle.mainloop()


  • 方法二
    对上述代码进行改进,在其中加入for循环

#用for循环优化代码
import turtle

bob = turtle.Turtle()
print(bob)

for i in range(4):
    bob.fd(100)
    bob.lt(90)
    
turtle.mainloop()


- **方法三** 对方法一代码进行改进,封装函数
import turtle

bob = turtle.Turtle()
print(bob)

#封装,square是方形
def square(t):
    for i in range(4):
        t.fd(100)
        t.lt(90)
square(bob)

#调用函数
turtle.mainloop()


你可能感兴趣的:(python,python)