import turtle as t
from random import randint
from random import uniform
t.speed(0)
for x in range(0,20,1):
i = randint(-150,150)
m = randint(-150,150)
t.up ( )
t.goto( i,m )
t.down( )
red=uniform(0,1)
green=uniform(0,1)
blue=uniform(0,1)
t.color(red,green,blue)
t.begin_fill()
t.circle(25)
t.end_fill()
t.right(90)
t.color(0,0,0)
t.end_fill()
t.fd(50)
t.seth(0)