Which of these would be considered better/clearer/faster/more ‘Pythonic’? I don’t care about the content of the list L, just how long it is.
a = [f(n) for n, _ in enumerate(L)]
or
a = [f(n) for n in range(len(L))]
If it makes any difference, the function f makes use of len(list) as well.
Some quick timing runs seem to give the 2nd option using
range()a slight edge overenumerate():and just for fun using
xrange()(Python v2.7.2)I would favor readable code first, then using
xrange()if available (i.e., Pre-Python v 3.x), followed byrange()andenumerate().