START = 0 SIZE = 40 EMPTY = " " CRITTER = "*" def create(): location = START aList = [EMPTY]*SIZE aList[0] = CRITTER return(location,aList) def display(aList): i = 0 while (i