Commit a928b78e by BellCodeEditor

save project

parent 95caa67f
Showing with 10 additions and 1 deletions
......@@ -16,7 +16,16 @@ pen.fd(100)
pen.right(30)
pen.fd(50)
pen.backward(50)
pen.left(60)
pen.fd(50)
pen.backward(50)
def m(n):
if n>=50:
pen.fd(n)
pen.right(30)
m(n-50)
pen.left(60)
m(n-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