You can use this as a model for Start Menu.
# Home Screen template from math import * from kandinsky import * from ion import * from time import * from random import * fill_rect(0,0,322,222,(6,155,255)) clock=0 while not keydown(KEY_OK): clock+=0.40 if clock<1: for i in range(20): for j in range(20): i=randint(0,321) j=randint(0,20) k=randint(0,321) l=randint(150,222) fill_rect(i,j,randint(20,50),randint(20,70),choice(["cyan","black"])) fill_rect(k,l,randint(20,50),randint(20,70),choice(["cyan","black"])) draw_string("GAME Y",120,110,"black","white")