Commit ee4d9495 by BellCodeEditor

auto save

parent 943fce0b
Showing with 15 additions and 4 deletions
...@@ -7,9 +7,20 @@ w = turtle.Screen() ...@@ -7,9 +7,20 @@ w = turtle.Screen()
w.bgcolor('wheat') # wheat小麦 w.bgcolor('wheat') # wheat小麦
pen.left(60)
pen.up() def tree(n):
pen.backward(150) # 后退 if n>=50:
pen.down() pen.fd(n)
pen.right(30)
tree(n-50)
pen.left(60)
tree(n-50)
pen.right(30)
pen.up()
pen.backward(n)
pen.down()
turtle.done() 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