Why does Python have the built-in function reversed
?
Why not just use x[::-1]
instead of reversed(x)
?
Edit: @TanveerAlam pointed out that reversed
is not actually a function, but rather a class, despite being listed on the page Built-in Functions.
reversed
returns a reverse iterator.[::-1]
asks the object for a slicePython objects try to return what you probably expect
This is convenient - particularly for strings and tuples.
But remember the majority of code doesn't need to reverse strings.
The most important role of
reversed()
is making code easier to read and understand.The fact that it returns an iterator without creating a new sequence is of secondary importance
From the docs