Commit d117071b by BellCodeEditor

auto save

parent 6b3d7a9a
Showing with 3 additions and 3 deletions
...@@ -11,7 +11,7 @@ colors=["white","blue","violet","cyan"] ...@@ -11,7 +11,7 @@ colors=["white","blue","violet","cyan"]
# 请创造师在下面接着创作 # 请创造师在下面接着创作
distance=1 distance=1
pen.speed(1000) pen.speed(1000)
for i in range(1,300): for i in range(1,3000000000000000000):
pen.pencolor(colors[i%4]) pen.pencolor(colors[i%4])
pen.forward(i) pen.forward(i)
pen.right(91) pen.right(91)
......
import turtle import turtle
...@@ -3,7 +3,7 @@ pen=turtle.Pen() ...@@ -3,7 +3,7 @@ pen=turtle.Pen()
screen = turtle.Screen() screen = turtle.Screen()
colors=["white","blue","blak","red"] colors=["white","blue","blak","red"]
distance=1 distance=1
for i in range(1,3): for i in range(300):
pen.pencolor(colors[i%4]) pen.pencolor(colors[i%4])
pen.forward(i) pen.forward(i)
pen.right(91) pen.right(91)
......
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