Commit dca39f03 by BellCodeEditor

save project

parent 230c8931
Showing with 19 additions and 0 deletions
i = 1
for j in range(1,10):
print (i,'*',j,'=',(j*i))
\ No newline at end of file
import turtle
T = turtle.Pen()
S = turtle.screensize()
S = ("Black")
a = 10
T.speed(2000)
colors = ("yellow","orange","red","green")
for i in range(1,300):
T.pencolor(colors[i%4])
T.forward(a)
T.right(91)
a = a+1
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