Commit 5ccbff13 by BellCodeEditor

auto save

parent f98e7e7c
Showing with 17 additions and 0 deletions
# import turtle
# p = turtle.Pen()
# s = turtle.Screen()
# s.bgcolor("black")
# color = ["red","yellow","blue","green"]
# p.speed(1000000)
# for i in range(1,301):
# p.color(color[i%4])
# p.forward(i)
# p.right(91
# p.hideturtle()
# turtle.done()
for i in range(1,10):
for j in range(1,i+1):
print(j , "x" , i , "=" , i*j , end=" ")
print()
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