Sometimes an iterable might be not subscriptable. Say the return from itertools.permutations:
ps = permutations(range(10), 10)
print ps[1000]
Python will complain that 'itertools.permutations' object is not subscriptable
Of course one can perform next() by n times to get the nth element. Just wondering are there better ways to do so?
