Commit 7e2dccbb by BellCodeEditor

save project

parent f1b2610f
Showing with 2 additions and 2 deletions
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
import turtle import turtle
pen = turtle.Pen() pen = turtle.Pen()
color=["red","blue","orange","green"] colors=["red","blue","orange","green"]
# 请创造师在下面接着创作 # 请创造师在下面接着创作
for i in range(300): for i in range(300):
pen.color(i%4) pen.color(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