Commit 3ce4ccd3 by BellCodeEditor

save project

parent 7effbd88
Showing with 3 additions and 15 deletions
import turtle
pen=turtle.Pen()
colors=["green","red","orange","yellow"]
screen=turtle.Screen()
screen.bgcolor("black")
for i in range(1,299):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.right(91)
pen.pencolor("yellow")
pen.forward(i-10)
pen.right(91)
pen.hideturtle()
turtle.done()
j = 5
i = 7
print(j,"×",i,"=",j*i)
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