Why Python starts counting at [0] instead of at [1] is a whole other issue. :D
array = [["0.0", "0.1"], ["1.0", "1.1"]] array[0[1]] seems right, although it isn't, because the index (0) and the subindex(1) are nested in 'array[0[1]]' much like the list and sublist that I'm "calling" from with the indexes. array[0][1] works instead? Gotcha. _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
