Commit 83a6ed7e by BellCodeEditor

auto save

parent a9b1fd6b
Showing with 47 additions and 0 deletions
from turtle import *
hideturtle()
bgcolor("black")
color("yellow")
x=10
y=0
for i in range(100000000):
pendown()
circle(x,360)
penup()
x+=10
y-=10
sety(y)
done()
\ No newline at end of file
from turtle import*
speed(100)
hideturtle()
abcd=["yellow","red","blue","green"]
for i in range(10000000000000000000000000000000000000000000000000):
color(abcd[i%4])
circle(i,999)
right(90)
done()
from turtle import*
penup()
setpos(0,100)
hideturtle()
fillcolor("green")
pendown()
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