Commit b47124eb by BellCodeEditor

auto save

parent f519fab0
Showing with 2 additions and 2 deletions
...@@ -8,9 +8,9 @@ p.speed(379) ...@@ -8,9 +8,9 @@ p.speed(379)
# 请创造师在下面接着创作 # 请创造师在下面接着创作
s=turtle.Screen() s=turtle.Screen()
s.bgcolor("black") s.bgcolor("black")
c=["blue""purple""pink"] c=["blue","purple"," pink"]
for i in range(1,300): for i in range(1,300):
p.color(c[1%3]) p.color(c[i%3])
p.forward(i) p.forward(i)
p.right(91) p.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