iterable が添字可能でない場合があります。からのリターンを言うitertools.permutations
:
ps = permutations(range(10), 10)
print ps[1000]
Pythonはそれを不平を言うでしょう'itertools.permutations' object is not subscriptable
もちろん、n 番目の要素を取得するために、回実行next()
することもできます。n
そうするためのより良い方法があるのだろうか?