Commit 3fba902f by BellCodeEditor

auto save

parent f2c7ea8d
Showing with 40 additions and 0 deletions
import turtle
t=turtle.Turtle()
t.circle(50,360,100)
t.speed(0)
\ No newline at end of file
import turtle
t=turtle.Turtle()
from random import randint
for x in range(10):
i=randint(-200,200)
j=randint(-200,200)
t.up()
t.goto(i,j)
t.down()
turtle.colormode(255)
r=randint(0,255)
g=randint(0,255)
b=randint(0,255)
t.color(r,g,b)
t.begin_fill()
t.circle(25)
t.end_fill()
t.right(90)
t.color(15,15,15)
t.fd(50)
turtle.Turtlr(done)
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