#!/usr/local/bin/python2 l = range(30) for i in xrange(10000): r = [e for e in l] r.sort(key=l.index) r = tuple(r) print r