Commit 2cb923c4 by BellCodeEditor

auto save

parent a6293e09
Showing with 9 additions and 7 deletions
i = 1 # 行 import turtle
j = 1 # 列 c=["red","orange","yellow","green"]
for i in range(1,10): pen=turtle.Pen()
for j in range(1,i+1): for i in range(300):
print(i,"x",j,"=",(i*j),end=" ") pen.pencolor(c[i%4
print() ])
\ No newline at end of file pen.forward(i)
pen.right(61)
\ 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