Commit 1bc91975 by BellCodeEditor

auto save

parent 1bad0edb
Showing with 17 additions and 1 deletions
...@@ -3,7 +3,7 @@ import turtle ...@@ -3,7 +3,7 @@ import turtle
pen=turtle.Pen() pen=turtle.Pen()
screen=turtle.Screen() screen=turtle.Screen()
pen.speed() pen.speed(0)
pen.hideturtle() pen.hideturtle()
screen.bgcolor('black') screen.bgcolor('black')
......
import turtle
import turtle
pen=turtle.Pen()
screen=turtle.Screen()
pen.speed(0)#将画图速度调至最快,速度范围0-10
pen.hideturtle()
screen.bgcolor('black')
for i in range(135):
pen.pencolor('pink')
pen.penup()
# pen.goto(0,0)
# pen.forward(200)
# pen.pendown()
# pen.circle(100)
# pen.left(2)
# 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