Commit fdab2f25 by BellCodeEditor

save project

parent 3ce31792
Showing with 19 additions and 0 deletions
import turtle
pen=turtle.Pen()
pen.speed(0)
screen = turtle.Screen()
screen.bgcolor("light pink")
color=["red","blue","green","cyan"]
for j in range(1,1000):
pen.pencolor(color[j%4])
pen.forward(j)
pen.right(91)
turtle.done()
pen.hideturtle()
\ No newline at end of file
for j in range(1,10):
for i in range(1,j+1):
print(i,"*",j,"=",(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