Commit b15cee4d by BellCodeEditor

auto save

parent 63ae79cf
Showing with 32 additions and 5 deletions
imim
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(0,-200)
pen.pendown()
pen.circle(200)
pen.penup()
pen.goto(-100,50)
pen.pendown()
pen.begin_fill()
pen.fillcolor("blue")
pen.circle(20)
pen.end_fill()
pen.penup()
pen.goto(100,50)
pen.pendown()
pen.begin_fill()
pen.circle(20)
pen.end_fill()
pen.penup()
pen.goto(0,50)
pen.pendown()
pen.circle(-50,steps=3)
pen.penup()
pen.goto(-150,-70)
pen.pendown()
pen.goto(0,-170)
pen.goto(150,-70)
turtle.done()
\ No newline at end of file
for i in range(1,10):
for j in range(1,i+1):
print(j,"X",i,"=",(j*i),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