Commit cd446165 by BellCodeEditor

save project

parent fa38ceb6
Showing with 11 additions and 6 deletions
j=3
i=5
print(j,'*',i,'=',(j * i))
......@@ -5,14 +5,13 @@
import turtle
pen = turtle.Pen()
screen=turtle.Screen()
screen.bgcolor("black")
# 请创造师在下面接着创作
color=["red","orange","yellow","green","blue"]
for i in range(1,300000000):
distance=1
for i in range(1,3000):
pen.forward(i)
pen.pencolor(color[i%5])
pen.right(30)
pen.right(79)
# 隐藏画笔,保存画布
pen.hideturtle()
turtle.done()
\ No newline at end of file
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