Commit 69c41537 by BellCodeEditor

save project

parent 8efab206
Showing with 8 additions and 0 deletions
import turtle
def tree(n)
if n>=50:
pen.forward(n)
pen.reight(30)
tree(50)
pen.up()
pen.backward(n)
pen.down
pen = turtle.Turtle()
pen.color('sienna')
......
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