Commit 3b081c3a by BellCodeEditor

auto save

parent 1a23c251
Showing with 507 additions and 0 deletions
......@@ -11,6 +11,14 @@ pen.left(90)
pen.up()
pen.backward(150) # 后退
pen.down()
def tree(w):
pen.forward(w)
pen.right(30)
tree(w-50)
pen.backward()
pen.up
pen.backward(w)
pen.down()
pen.forward(100)
pen.right(30)
......@@ -21,3 +29,502 @@ pen.forward(50)
turtle.done()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment