Carl Banks <[email protected]> writes: > Instead, call random.shuffle() on the list, and iterate through that > to get the elements in random order.
It's better to use random.sample() than random.shuffle(). -- http://mail.python.org/mailman/listinfo/python-list
