Commit e25e42ea by BellCodeEditor

save project

parent 33156e0b
Showing with 5 additions and 0 deletions
...@@ -4,11 +4,16 @@ ...@@ -4,11 +4,16 @@
""" """
import turtle import turtle
i=1 i=1
color=["red","green","blue","yellow"]
screen=turtle.Screen()
screen.bgcolor("black")
pen = turtle.Pen() pen = turtle.Pen()
# 请创造师在下面接着创作 # 请创造师在下面接着创作
for i in range(2,200): for i in range(2,200):
pen.fd(i) pen.fd(i)
pen.right(91) pen.right(91)
pen.pencolor(color[i%4])
......
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