Commit 22687394 by BellCodeEditor

save project

parent 60c05e75
Showing with 4 additions and 10 deletions
import turtle
eee=["red","yellow","orange","green"]
screen=turtle.Screen()
screen.bgcolor("black")
for i in range(1,200):
turtle.speed(999)
turtle.pencolor(eee[i%4])
turtle.forward(i)
turtle.right(91)
i = 5
j = 3
print(i,"*",j,"=",j*i)
\ 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