Commit b30555a7 by BellCodeEditor

save project

parent 823d6dbd
Showing with 13 additions and 4 deletions
i="5"
j="3"
print("j",'*',"i",'=',('j'*'i))
\ No newline at end of file
import turtle
color=["red","sky blue","yellow","violet"]
screen=turtle.Screen()
screen.bgcolor("black")
pen = turtle.Pen()
for i in range(2,500,1):
pen.pencolor(color[i%4])
pen.forward(i)
pen.right(91)
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