Python,与乌龟的绘图模式

时间:2014-04-19 15:34:49

标签: python

所以我正在学习python,每个页面后网站都要求我练习。如果事情有效,他们会以海龟为例,因为它很容易被发现。 现在,我根本不知道如何做到这一点。 我应该画这个: http://puu.sh/8f0fA.jpg

这是我到目前为止所获得的代码(我知道它不是这样做的方式,但它至少是开始的基础)

import turtle

def pattern(turtle, sideLenght):
    for i in range(6):
        turtle.up()
        turtle.goto(turtle.pos() + (+10,+10))
        turtle.left(90)
        turtle.forward(sideLenght)
        turtle.down()
        for i in range(4):
            turtle.forward(sideLenght)
            turtle.left(90)


wn = turtle.Screen()
wn.bgcolor("lightgreen")

alex = turtle.Turtle()
alex.color("pink")
alex.pensize(4)
alex.speed(1)

pattern(alex,200)
wn.exitonclick()

0 个答案:

没有答案