Commit 04da0ac6 by BellCodeEditor

auto save

parent bae41ef6
Showing with 11 additions and 0 deletions
import turtle
pen = turtle.Pen()
def lx(n):
if n >= 1:
pen.forward(n)
pen.right(90)
lx(n-10)
lx(500)
turtle.done()
\ No newline at end of file
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