Commit e1e6737f by BellCodeEditor

save project

parent 351b8382
Showing with 10 additions and 0 deletions
import turtle
import random
pen = turtle.Turtle()
pen.color('sienna')
pen.speed(0)
w = turtle.Screen()
w.bgcolor('wheat')
pen.left(90)
pen.up()
pen.backward(150)
pen.down()
def tree(n):
if n >= 50:
pen.forward(n)
......
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