To quote a much smaller trimmed-down example, here is how it looks like: <--> import sys
## -------------------------------------------- ## -------------------------------------------- def GenerateList(): array = ' ' for i in xrange(10): array = (array, i) return array ## ----------------------------------------------- # Entry Point to the whole program ## ----------------------------------------------- def main(): mylist = GenerateList() minnumber = min(mylist) for num in mylist: print num - minnumber ## TODO: Interpreter errors above. ## -------------------------------- # Entry-point to the whole program ## -------------------------------- main() <-- > -- http://mail.python.org/mailman/listinfo/python-list