Commit c555155e by BellCodeEditor

auto save

parent 1e34164e
Showing with 11 additions and 5 deletions
for i in range(1,10,1): # 行
for j in range(1,i+1):
print(j,"*",i,"=",(j*i),end=" ")
print()
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.fillcolor("blue")
pen.begin_fill()
for i in range(6):
pen.forward(200)
pen.right(60)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ 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