Commit ee4d9495 by BellCodeEditor

auto save

parent 943fce0b
Showing with 16 additions and 6 deletions
......@@ -34,4 +34,4 @@ def tree(a):
pen.backward(a)
pen.down()
tree(60)
turtle.done()
\ No newline at end of file
turtle.done()
......@@ -7,9 +7,20 @@ w = turtle.Screen()
w.bgcolor('wheat') # wheat小麦
pen.left(60)
pen.up()
pen.backward(150) # 后退
pen.down()
def tree(n):
if n>=50:
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()
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