Commit b3326fac by BellCodeEditor

save project

parent 2203f0d4
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()
colors1[red,blue,yellow,green] colors1=["red","blue","yellow","green"]
pen.speed(10000) pen.speed(10000)
# 请创造师在下面接着创 # 请创造师在下面接着创
for i in range(300): for i in range(300):
pen.color(colors1) pen.color(colors1[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