# TODAY: Page 249 in the Companion: Python Sequence Data Types # Lists: Mutable # Tuples: Immutable # Strings: Immutable def BuildAList(Limit): # Returns a list containing square roots L = [] Counter = 0 while (Counter < Limit): X = sqrt(Counter) L = L + [X] Counter = Counter + 1 return L