Further hints for the horserace program. The while loop inside the mydraw function of your horserace program should roughly have the following structure. n = 6 # number of horses (should be able to change this) stop = False # loop control variable, set to True to stop the loop while stop==False: gc.set_foreground(green) #clear background brush.draw_rectangle(gc,True,0,0,width,height) # draw finish line (may have to experiment for best results) # interior while loop: for each horse, i = 0 # inner loop counter while i