Commit c22c5a10 by BellCodeEditor

auto save

parent f51e0daf
Showing with 23 additions and 0 deletions
import turtle
from random import randint
t = turtle.Turtle()
for x in range(10):
i = randint(-150,150)
j = randint(-150,150)
t.up()
t.goto(i,j)
t.down()
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)
t.seth(0)
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