Commit 3bbf604d by BellCodeEditor

auto save

parent f4b1eda4
Showing with 31 additions and 7 deletions
i=0
while i<5:
print("悟空")
i = i+1
if i == 4:
break
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.penup()
pen.goto(-117,0)
pen.pendown()
pen.pensize(4.5)
pen.color("blue")
pen.circle(50,360)
pen.penup()
pen.forward(105)
pen.color("black")
pen.pendown()
pen.circle(50,360)
pen.penup()
pen.forward(105)
pen.color("red")
pen.pendown()
pen.circle(50,360)
pen.penup()
pen.goto(-65,-75)
pen.color("yellow")
pen.pendown()
pen.circle(50,360)
pen.penup()
pen.forward(105)
pen.color("light green")
pen.pendown()
pen.circle(50,360)
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