Python
import turtle as t from random import uniform 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.rt(90) t.color(red,green,blue) t.end_fill() t.fd(100) from random