Commit 173ba058 by BellCodeEditor

auto save

parent 5b42a1a9
Showing with 39 additions and 0 deletions
from turtle import *
speed()
hideturtle()
penup()
setpos(0,100)
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
from turtle import *
speed(10000)
hideturtle()
bgcolor('red')
color('green')
x = 10
y = 0
for i in range(9999999999999999):
pendown()
circle(x,360)
penup()
x += 10
y -= 10
sety(y)
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