def BuildOddList (Start,Limit,Step): L = [] Counter = Start while (Counter < Limit): L = L + [Counter] Counter = Counter + Step return L def PrintList (L): Counter = 0 while (Counter < len(L)): print L[Counter] Counter = Counter + 1 return def PrintList2(L): for Item in L: # Know the value, but I don't know where it is print Item return def PrintList3(L): for Counter in range(len(L)): # I know the value, and it's position is at index Counter print L[Counter] return