Commit 671500b5 by BellCodeEditor

save project

parent 40f810e3
Showing with 9 additions and 0 deletions
import turtle
pen = turtle.Turtle()
pen.speed(0)
pen.color('sienna')
# 画布大小
w = turtle.Screen()
......@@ -11,5 +13,12 @@ pen.left(90)
pen.up()
pen.backward(150) # 后退
pen.down()
pen.fd(200)
pen.lt(30)
pen.fd(100)
pen.fd(-100)
pen.rt(60)
pen.fd(100)
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