Commit b21dd972 by BellCodeEditor

auto save

parent f25effac
Showing with 18 additions and 0 deletions
# import turtle
# screen=turtle.Screen()
# screen.bgcolor('black') #背景填色
# pen=turtle.Pen()
# pen.speed(100)
# colors=['red','pink','yellow','blue']
# for i in range(300):
# pen.color(colors[i%4])
# pen.fd(i+1)
# pen.left(91)
# pen.hideturtle()
# turtle.done()
for a in range(1,10):
for b in range(1,a+1):
print(a,'*',b,'=',(a*b),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