Commit 86b14194 by BellCodeEditor

save project

parent a4368f1e
Showing with 17 additions and 0 deletions
# import turtle
# pen=turtle.Pen()
# pen.speed(0)
# a=["red","yellow","light green","light blue"]
# for i in range(1,300):
# pen.pencolor(a[i%4])
# pen.forward(i)
# pen.left(91)
# pen.hideturtle()
# turtle.done()
# 九九乘法表
for i in range(1,10): #列
for j in range(1,i+1): #行
print(j,'*',i,'=',(j*i),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