Commit ee4d9495 by BellCodeEditor

auto save

parent 943fce0b
Showing with 16 additions and 6 deletions
...@@ -34,4 +34,4 @@ def tree(a): ...@@ -34,4 +34,4 @@ def tree(a):
pen.backward(a) pen.backward(a)
pen.down() pen.down()
tree(60) tree(60)
turtle.done() turtle.done()
\ No newline at end of file
...@@ -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