Commit ef747175 by BellCodeEditor

auto save

parent 5bc20b1f
Showing with 51 additions and 0 deletions
from turtle import*
x=30
hideturtle()
for i in range(12):
pendown()
fillcolor('yellow')
begin_fill()
right(90)
forward(80)
left(60)
forward(80)
left(120)
forward(80)
left(60)
forward(80)
end_fill()
penup()
setheading(x)
circle(120,30)
setheading(x)
x+=30
pendown()
color('red')
left(30)
circle(120,360)
done()
\ No newline at end of file
from turtle import*
penup()
setpos(0,100)
hideturtle()
pendown()
fillcolor('green')
for i in range(6):
begin_fill()
for i in range(3):
forward(150)
left(120)
end_fill()
forward(150)
right(60)
fillcolor('red')
begin_fill()
for i in range(6):
forward(150)
right(60)
end_fill()
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