# Helene Martin, Garfield High School # Draws some artistic random dots from turtle import * from random import * shape("circle") # Infinite loop while(True): clear() # I want my shape to stay a circle, so I need its width and height to change by the same amount size = random() * 5 shapesize(size, size) # Remember, random() returns a float between 0 and 1 color(random(), random(), random()) stamp() up() goto(randint(-300, 300), randint(-300, 300)) down()