Commit fc2d3353 by BellCodeEditor

save project

parent faf8dd05
Showing with 21 additions and 0 deletions
import turtle
pen = turtle.Pen()
screen = turtle.Screen()
screen.bgcolor("light green")
colors=["white","blue","violet","cyan"]
distance=1
pen.speed(1000)
for i in range(0,30000000000000000000000000000000000000000000000000):
pen.pencolor(colors[i%4])
pen.forward(i)
pen.right(91)
turtle.done()
i=1
for i in range(1,10):
for j in range(1,i+1):
print(j,"*",i,"=",(i*j),end=" ")
print()
\ 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